結果

問題 No.12 限定された素数
ユーザー ytftytft
提出日時 2022-11-02 23:24:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 117,476 KB
最終ジャッジ日時 2024-07-17 11:18:34
合計ジャッジ時間 123,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,485 ms
116,408 KB
testcase_01 AC 4,689 ms
116,824 KB
testcase_02 WA -
testcase_03 AC 3,346 ms
115,820 KB
testcase_04 AC 4,720 ms
116,256 KB
testcase_05 AC 4,402 ms
116,744 KB
testcase_06 AC 4,595 ms
116,008 KB
testcase_07 AC 4,580 ms
116,236 KB
testcase_08 AC 4,404 ms
116,656 KB
testcase_09 AC 4,998 ms
116,240 KB
testcase_10 AC 4,356 ms
117,476 KB
testcase_11 AC 4,532 ms
116,096 KB
testcase_12 AC 4,824 ms
116,528 KB
testcase_13 AC 4,664 ms
116,172 KB
testcase_14 AC 4,414 ms
116,464 KB
testcase_15 AC 4,667 ms
116,296 KB
testcase_16 AC 4,732 ms
116,896 KB
testcase_17 WA -
testcase_18 AC 4,601 ms
116,420 KB
testcase_19 AC 4,569 ms
116,680 KB
testcase_20 AC 4,354 ms
116,588 KB
testcase_21 AC 4,553 ms
116,740 KB
testcase_22 AC 4,491 ms
116,600 KB
testcase_23 AC 4,562 ms
116,092 KB
testcase_24 AC 4,743 ms
116,000 KB
testcase_25 AC 4,752 ms
116,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
rang=5*10**6
isPrime=[1 for i in range(rang+1)]
isPrime[1]=0
for i in range(2,rang+1):
	if isPrime[i]:
		for j in range(i*2,rang+1,i):
			isPrime[j]=0
N=int(input())
A=list(map(int,input().split()))
target=[0 for i in range(10)]
used=[0 for i in range(10)]
for i in A:
	target[i]=1
K,ans=1,0
for L in range(1,rang+1):
	for i in str(L):
		if isPrime[L]:
			used[int(i)]+=1
	while K<L and any([used[i]>0 and target[i]==0 for i in range(10)]):
		if isPrime[K]:
			for i in str(K):
				used[int(i)]-=1
		K+=1
	if all([(used[i]==0)^target[i] for i in range(10)]):
		ans=max(ans,L-K)
print(ans)
0