/ CYOJ /

记录详情

Time Exceeded


  
Found 1 testcases.
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Time Exceeded ≥1077ms ≥11.742 MiB

代码

#include<bits/stdc++.h>
using namespace std;
int a;
bool v[1000005];
int main() {
	//freopen("checkin.txt","r",stdin);
	//freopen("checkout1.txt","w",stdout);
	v[1] = 1;
	v[0] = 0;
	for(long long i = 2;i <= 1000000;i++) {
		if(v[i]) {
			continue;
		}
		for(long long j = i * i;j <= 1000000;j += i) {
			v[j] = 1;
		}
	}
	while(cin>>a) {
		if(v[a]) {
			printf("%d is not prime.\n",a);
		}
		else{
			int b = a;
			int c = 0;
			while(b) {
				c *= 10;
				c += b % 10;
				b /= 10;
			}
			if(!v[c] and a != c) {
				printf("%d is emirp.\n",a);
			}
			else{
				printf("%d is prime.\n",a);
			}
		}
	}
}

信息

递交者
类型
递交
题目
P1020 特殊质数
语言
C++
递交时间
2022-09-02 21:57:36
评测时间
2022-09-10 10:44:54
评测机
分数
0
总耗时
≥1077ms
峰值内存
≥11.742 MiB