結果

問題 No.6 使いものにならないハッシュ
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-05-20 10:59:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 244 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-16 16:44:04
合計ジャッジ時間 5,287 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 244 ms
13,056 KB
testcase_03 AC 62 ms
11,136 KB
testcase_04 AC 80 ms
11,520 KB
testcase_05 AC 95 ms
11,264 KB
testcase_06 AC 147 ms
12,288 KB
testcase_07 AC 101 ms
11,904 KB
testcase_08 AC 130 ms
12,032 KB
testcase_09 AC 95 ms
12,288 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 68 ms
11,136 KB
testcase_12 AC 172 ms
12,288 KB
testcase_13 AC 86 ms
12,160 KB
testcase_14 AC 95 ms
12,288 KB
testcase_15 AC 143 ms
11,904 KB
testcase_16 AC 119 ms
12,288 KB
testcase_17 AC 186 ms
12,672 KB
testcase_18 AC 233 ms
12,800 KB
testcase_19 AC 181 ms
12,672 KB
testcase_20 AC 163 ms
12,288 KB
testcase_21 AC 49 ms
10,880 KB
testcase_22 AC 174 ms
12,672 KB
testcase_23 AC 167 ms
12,288 KB
testcase_24 AC 167 ms
12,416 KB
testcase_25 AC 111 ms
11,904 KB
testcase_26 AC 198 ms
12,672 KB
testcase_27 AC 156 ms
12,288 KB
testcase_28 AC 112 ms
11,648 KB
testcase_29 AC 207 ms
12,672 KB
testcase_30 AC 191 ms
12,416 KB
testcase_31 AC 172 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
n = int(input())
siv = [True]*(n+1)
siv[0] = siv[1] = False
for i in range(2, int(n**0.5)+2):
    if not siv[i]:
        continue
    for j in range(i*2, n+1, i):
        siv[j] = False
prm = [i for i in range(k, n+1) if siv[i]]
def hsh(x):
    x = sum(map(int, str(x)))
    if x >= 10:
        return hsh(x)
    return x
vis = set()
mx = res = beg = 0
end = -1
while end < len(prm)-1:
    h = hsh(prm[end+1])
    if h in vis:
        vis.remove(hsh(prm[beg]))
        beg += 1
    else:
        vis.add(h)
        end += 1
        if len(vis) >= mx:
            mx = len(vis)
            res = prm[beg]
print(res)
0