結果

問題 No.12 限定された素数
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 12:48:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 116,496 KB
最終ジャッジ日時 2024-10-21 12:48:32
合計ジャッジ時間 18,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 582 ms
115,492 KB
testcase_01 AC 619 ms
115,564 KB
testcase_02 WA -
testcase_03 AC 530 ms
115,328 KB
testcase_04 AC 602 ms
115,488 KB
testcase_05 WA -
testcase_06 AC 608 ms
115,948 KB
testcase_07 AC 589 ms
115,668 KB
testcase_08 WA -
testcase_09 AC 597 ms
116,096 KB
testcase_10 WA -
testcase_11 AC 592 ms
115,880 KB
testcase_12 AC 602 ms
115,540 KB
testcase_13 AC 586 ms
115,584 KB
testcase_14 AC 645 ms
116,284 KB
testcase_15 AC 593 ms
115,604 KB
testcase_16 AC 675 ms
116,236 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

L=5000000
P=[1]*(L+1)
for i in range(2,L+1):
  if P[i]:
    for j in range(i+i,L+1,i):
      P[j]=0

n=int(input())
a=list(map(int,input().split()))
s=0
for v in a:
  s|=1<<v
ans=-1
r=1
t=0
c=[0]*10
for l in range(1,L+1):
  while r+1<=L and t&s==t:
    if t==s:
      ans=max(ans,r-l)
    r+=1
    if P[r]:
      for v in list(map(int,str(r))):
        if c[v]==0:
          t|=1<<v
        c[v]+=1
    if t==s:
      ans=max(ans,r-l)
  if P[l]:
    for v in list(map(int,str(l))):
      c[v]-=1
      if c[v]==0:
        t^=1<<v
  if r==l and l+1<=L:
    r+=1
    if P[r]:
      for v in list(map(int,str(r))):
        if c[v]==0:
          t|=1<<v
        c[v]+=1
print(ans)
0