結果

問題 No.6 使いものにならないハッシュ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 14:07:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 662 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 79,768 KB
最終ジャッジ日時 2024-10-20 14:07:55
合計ジャッジ時間 13,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,832 KB
testcase_01 AC 48 ms
62,464 KB
testcase_02 AC 662 ms
79,768 KB
testcase_03 AC 226 ms
77,640 KB
testcase_04 AC 249 ms
78,768 KB
testcase_05 AC 293 ms
78,392 KB
testcase_06 AC 417 ms
78,724 KB
testcase_07 AC 284 ms
79,184 KB
testcase_08 AC 368 ms
78,800 KB
testcase_09 AC 212 ms
79,380 KB
testcase_10 AC 37 ms
53,420 KB
testcase_11 AC 261 ms
78,504 KB
testcase_12 AC 478 ms
78,840 KB
testcase_13 AC 176 ms
78,808 KB
testcase_14 AC 210 ms
79,460 KB
testcase_15 AC 459 ms
78,848 KB
testcase_16 AC 298 ms
79,284 KB
testcase_17 AC 479 ms
79,388 KB
testcase_18 AC 608 ms
79,192 KB
testcase_19 AC 468 ms
79,136 KB
testcase_20 AC 432 ms
78,956 KB
testcase_21 AC 191 ms
77,664 KB
testcase_22 AC 444 ms
79,016 KB
testcase_23 AC 437 ms
78,856 KB
testcase_24 AC 462 ms
78,892 KB
testcase_25 AC 290 ms
78,716 KB
testcase_26 AC 508 ms
79,400 KB
testcase_27 AC 401 ms
79,288 KB
testcase_28 AC 371 ms
78,932 KB
testcase_29 AC 561 ms
79,184 KB
testcase_30 AC 579 ms
78,912 KB
testcase_31 AC 464 ms
78,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(input())
N=int(input())

l=N+1
P=[1]*l
for i in range(2,l):
  if P[i]:
    for j in range(i+i,l,i):
      P[j]=0
P=[i for i in range(2,l) if P[i] and K<=i<=N]

def HASH(x):
  if x<10:
    return x
  return HASH(sum(list(map(int,str(x)))))

a=(0,0)
for w in range(1,10):
  for l in range(len(P)-w+1):
    r=l+w-1
    if len(set([HASH(i) for i in P[l:r+1]]))==w:
      a=max(a,(w,P[l]))

print(a[1])
0