#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int N;
cin>>N;
char Z;
int a,lu=0;
for(int i=1;i<=N;i++){
if(lu==20){break;}
cin>>Z>>Z>>Z>>a;
if(Z=='E'){continue;}
if(lu<10){cout<<i<<' ';lu++;}
else if(a<2){cout<<i<<' ';lu++;}
}
return 0;}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int N; cin>>N; char Z; int a,lu=0; for(int i=1;i<=N;i++){ if(lu==20){break;} cin>>Z>>Z>>Z>>a; if(Z=='E'){continue;} if(lu<10){cout<<i<<' ';lu++;} else if(a<2){cout<<i<<' ';lu++;} } return 0;} |
English