結果

問題 No.12 限定された素数
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 12:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 612 ms / 5,000 ms
コード長 688 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 116,180 KB
最終ジャッジ日時 2024-10-21 12:52:46
合計ジャッジ時間 16,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
115,504 KB
testcase_01 AC 560 ms
115,472 KB
testcase_02 AC 562 ms
115,532 KB
testcase_03 AC 515 ms
115,632 KB
testcase_04 AC 564 ms
115,624 KB
testcase_05 AC 575 ms
115,740 KB
testcase_06 AC 521 ms
115,528 KB
testcase_07 AC 534 ms
115,668 KB
testcase_08 AC 574 ms
116,136 KB
testcase_09 AC 551 ms
115,544 KB
testcase_10 AC 584 ms
116,092 KB
testcase_11 AC 541 ms
115,676 KB
testcase_12 AC 558 ms
115,528 KB
testcase_13 AC 546 ms
116,084 KB
testcase_14 AC 592 ms
116,036 KB
testcase_15 AC 525 ms
115,992 KB
testcase_16 AC 581 ms
116,116 KB
testcase_17 AC 551 ms
115,976 KB
testcase_18 AC 517 ms
115,544 KB
testcase_19 AC 545 ms
115,640 KB
testcase_20 AC 612 ms
116,180 KB
testcase_21 AC 528 ms
115,660 KB
testcase_22 AC 509 ms
115,540 KB
testcase_23 AC 537 ms
115,540 KB
testcase_24 AC 518 ms
115,688 KB
testcase_25 AC 562 ms
115,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=5000000
P=[1]*(L+1)
P[0]=P[1]=0
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