|
| Code Submission Evaluation System |
Login |
HIIT Open 2016
|
Start: | 2016-05-28 11:00:00 |
End: | 2016-05-28 16:00:00 |
|
|
Tasks | Messages | Scoreboard | Statistics
CSES - HIIT Open 2016 - Results
Task: | Interesting number |
Sender: | ContinuedLife |
Submission time: | 2016-05-28 12:08:48 |
Language: | C++ |
Status: | READY |
Result: | ACCEPTED |
Test results
test | verdict | time (s) | |
#1 | ACCEPTED | 0.05 / 1.00 | details |
#2 | ACCEPTED | 0.05 / 1.00 | details |
Code
#include <bits/stdc++.h>
#define _ ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0), cout.precision(6);
using namespace std;
int main(){ _
int ans[20] = {2, 3, 5, 7, 11, 101, 131, 151, 181, 191, 313, 353, 373, 383, 727, 757, 787, 797, 919, 929};
//set<int> si;
// for(int i = 0; i < 21; ++i) si.insert(anss[i]);
int TC; cin >> TC;
while(TC--){
int n, num; cin >> n;
for(int i = 0; i < n; ++i){
cin >> num;
for(int j = 0; j < 20; ++j)
if(ans[j] == num) cout << num << endl;
}
}
return 0;
}
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1000
9
300 988 956 931 116 3 386 202 ...
8
786 850 344 607 258 3 564 795
7
181 300 325 705 512 972 207
6
919 257 176 534 398 536
9
324 811 467 265 688 191 642 17...
5
7 691 423 512 506
5
705 191 300 735 966
10
134 709 407 211 518 815 444 11...
9
794 476 394 244 671 181 466 92...
6
... |
correct output |
---|
3
3
181
919
191
7
191
353
181
929
787
727
7
373
313
2
353
383
787
919
... |
user output |
---|
3
3
181
919
191
7
191
353
181
929
787
727
7
373
313
2
353
383
787
919
... |
Test 2
Verdict: ACCEPTED
input |
---|
1
100000
72 247 605 249 10 422 594 490 ... |