結果

問題 No.6 使いものにならないハッシュ
ユーザー miztommiztom
提出日時 2024-03-12 14:55:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 389 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,684 KB
最終ジャッジ日時 2024-09-29 22:19:44
合計ジャッジ時間 4,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 37 ms
52,564 KB
testcase_02 AC 112 ms
80,684 KB
testcase_03 AC 84 ms
76,672 KB
testcase_04 AC 93 ms
77,568 KB
testcase_05 AC 89 ms
77,568 KB
testcase_06 AC 109 ms
78,592 KB
testcase_07 AC 115 ms
78,208 KB
testcase_08 AC 119 ms
78,592 KB
testcase_09 AC 135 ms
79,616 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 95 ms
77,312 KB
testcase_12 AC 127 ms
79,116 KB
testcase_13 AC 128 ms
78,848 KB
testcase_14 AC 131 ms
79,104 KB
testcase_15 AC 119 ms
78,336 KB
testcase_16 AC 137 ms
79,144 KB
testcase_17 AC 135 ms
79,488 KB
testcase_18 AC 122 ms
80,360 KB
testcase_19 AC 113 ms
79,712 KB
testcase_20 AC 114 ms
78,976 KB
testcase_21 AC 80 ms
76,796 KB
testcase_22 AC 113 ms
78,976 KB
testcase_23 AC 110 ms
79,244 KB
testcase_24 AC 110 ms
79,232 KB
testcase_25 AC 102 ms
78,208 KB
testcase_26 AC 112 ms
79,860 KB
testcase_27 AC 107 ms
78,976 KB
testcase_28 AC 88 ms
77,696 KB
testcase_29 AC 112 ms
79,488 KB
testcase_30 AC 112 ms
79,104 KB
testcase_31 AC 108 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
n=int(input())
p=[1]*-~n
p[0]=p[1]=0
h=[None]*-~n
h[:10]=*range(10),
for i in range(n+1):
    if p[i]:
        for j in range(i*i,n+1,i):p[j]=0
    h[i]=h[sum(map(int,str(i)))]
h=[(h[i],i)for i in range(k,n+1)if p[i]]+[[0,0]]
s={0}
m=len(h)-1
p=0
r=(0,0)
for i in range(m):
    while h[p][0] not in s:s|={h[p][0]};p+=1
    r=max(r,(p-i,h[i][1]))
    s^={h[i][0]}
print(r[1])
0