CSES - HIIT Open 2016 - Results
Submission details
Task:Interesting number
Sender:Game of Nolife
Submission time:2016-05-28 11:14:02 +0300
Language:C++
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.05 sdetails
#2ACCEPTED0.06 sdetails

Code

#include <bits/stdc++.h>
#define F first
#define S second
#define X real()
#define Y imag()
using namespace std;
typedef long long ll;
typedef long double ld;

int pp[2020];

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	pp[0]=1;
	pp[1]=1;
	for (int i=2;i<=1000;i++){
		for (int j=2;j*i<=1000;j++){
			pp[j*i]=1;
		}
	}
	int tcs;
	cin>>tcs;
	for (int tc=0;tc<tcs;tc++){
		int n;
		cin>>n;
		for (int i=0;i<n;i++){
			int a;
			cin>>a;
			if (pp[a]==0){
				string lol=to_string(a);
				string asd=lol;
				reverse(lol.begin(), lol.end());
				if (lol==asd){
					cout<<a<<'\n';
				}
			}
		}
	}
}

Test details

Test 1

Verdict: ACCEPTED

input
1000
9
300 988 956 931 116 3 386 202 ...

correct output
3
3
181
919
191
...

user output
3
3
181
919
191
...

Test 2

Verdict: ACCEPTED

input
1
100000
72 247 605 249 10 422 594 490 ...

correct output
191

user output
191