/*
* Author: toko
* Time: 2025-03-10 12:15:52
*/
#ifndef DEBUG
#define NDEBUG
#pragma GCC optimize("Ofast,unroll-loops")
#endif
#include <iostream>
#include <cstdint>
using namespace std;
int main()
{
iostream::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
uint32_t n;
cin >> n;
n = 0;
for (uint32_t c = 0; c < 20; c++)
{
string s;
uint32_t x;
do
{
cin >> s >> x;
++n;
}
while (s == "NIE" || (c >= 10 && x >= 2));
cout << n << ' ';
}
cout << endl;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /* * Author: toko * Time: 2025-03-10 12:15:52 */ #ifndef DEBUG #define NDEBUG #pragma GCC optimize("Ofast,unroll-loops") #endif #include <iostream> #include <cstdint> using namespace std; int main() { iostream::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); uint32_t n; cin >> n; n = 0; for (uint32_t c = 0; c < 20; c++) { string s; uint32_t x; do { cin >> s >> x; ++n; } while (s == "NIE" || (c >= 10 && x >= 2)); cout << n << ' '; } cout << endl; return 0; } |
English