#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
string s;
int x;
int wolne = 20;
int it = 0;
while (n--)
{
it++;
cin >> s >> x;
if (wolne == 0)
continue;
if (wolne <= 10 and x > 1)
continue;
if (s == "NIE")
continue;
wolne--;
cout << it << ' ';
}
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <iostream> using namespace std; int main() { int n; cin >> n; string s; int x; int wolne = 20; int it = 0; while (n--) { it++; cin >> s >> x; if (wolne == 0) continue; if (wolne <= 10 and x > 1) continue; if (s == "NIE") continue; wolne--; cout << it << ' '; } } |
English