#include <bits/stdc++.h>
using namespace std;
int main(){
int n, c = 0, it = 0; cin >> n;
for(auto i = 1; i <= n; ++i){
string s; cin >> s;
int x; cin >> x;
if(s == "TAK"){
cout << i << " ";
c++;
}
if(c == 10){
it = i+1;
break;
}
}
for(auto i = it; i <= n; ++i){
string s; cin >> s;
int x; cin >> x;
if(s == "TAK" && x < 2 && c < 20){
cout << i << " ";
c++;
}
}
}
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 | #include <bits/stdc++.h> using namespace std; int main(){ int n, c = 0, it = 0; cin >> n; for(auto i = 1; i <= n; ++i){ string s; cin >> s; int x; cin >> x; if(s == "TAK"){ cout << i << " "; c++; } if(c == 10){ it = i+1; break; } } for(auto i = it; i <= n; ++i){ string s; cin >> s; int x; cin >> x; if(s == "TAK" && x < 2 && c < 20){ cout << i << " "; c++; } } } |
English