#include <iostream>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
string canParticipate;
int amountContest;
int finalists[20];
int currentFinalistPlace = 0;
for (int i = 0; i < n; i++) {
cin >> canParticipate >> amountContest;
if (canParticipate == "TAK") {
if (currentFinalistPlace < 10 || amountContest < 2) {
finalists[currentFinalistPlace++] = i + 1;
}
if (currentFinalistPlace == 20) break;
}
}
for (int i = 0; i < 19; i++) {
cout << finalists[i] << " ";
}
cout << finalists[19];
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 | #include <iostream> #include <string> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; string canParticipate; int amountContest; int finalists[20]; int currentFinalistPlace = 0; for (int i = 0; i < n; i++) { cin >> canParticipate >> amountContest; if (canParticipate == "TAK") { if (currentFinalistPlace < 10 || amountContest < 2) { finalists[currentFinalistPlace++] = i + 1; } if (currentFinalistPlace == 20) break; } } for (int i = 0; i < 19; i++) { cout << finalists[i] << " "; } cout << finalists[19]; return 0; } |
English