結果

問題 No.6 使いものにならないハッシュ
ユーザー ああいいああいい
提出日時 2022-01-09 23:43:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 78,188 KB
最終ジャッジ日時 2024-11-14 10:36:40
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,096 KB
testcase_01 AC 37 ms
52,676 KB
testcase_02 AC 85 ms
78,172 KB
testcase_03 AC 68 ms
76,504 KB
testcase_04 AC 70 ms
76,512 KB
testcase_05 AC 83 ms
77,180 KB
testcase_06 AC 79 ms
77,564 KB
testcase_07 AC 81 ms
77,192 KB
testcase_08 AC 83 ms
77,688 KB
testcase_09 AC 73 ms
77,784 KB
testcase_10 AC 36 ms
52,340 KB
testcase_11 AC 77 ms
76,824 KB
testcase_12 AC 90 ms
77,476 KB
testcase_13 AC 60 ms
73,620 KB
testcase_14 AC 72 ms
77,624 KB
testcase_15 AC 86 ms
77,388 KB
testcase_16 AC 80 ms
77,788 KB
testcase_17 AC 95 ms
78,040 KB
testcase_18 AC 89 ms
77,812 KB
testcase_19 AC 85 ms
77,820 KB
testcase_20 AC 90 ms
77,884 KB
testcase_21 AC 68 ms
76,528 KB
testcase_22 AC 80 ms
77,500 KB
testcase_23 AC 82 ms
77,412 KB
testcase_24 AC 91 ms
77,684 KB
testcase_25 AC 74 ms
77,336 KB
testcase_26 AC 85 ms
77,948 KB
testcase_27 AC 82 ms
78,180 KB
testcase_28 AC 77 ms
77,060 KB
testcase_29 AC 99 ms
78,188 KB
testcase_30 AC 97 ms
77,624 KB
testcase_31 AC 88 ms
77,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dat = [0] * (N + 1)
prime = []
for i in range(2,N+1):
    if dat[i] == 0:
        for j in range(i * 2,N+1,i):
            dat[j] = 1
        if i >= K:
            prime.append(i)
def hash(x):
    if x <= 9:return x
    a = 0
    while x:
        a += x % 10
        x //= 10
    return hash(a)
N = len(prime)
right = 0
s = set()
_max = 0
index = -1
for left in range(N):
    while right < N and hash(prime[right]) not in s:
        s.add(hash(prime[right]))
        right += 1
    if right - left >= _max:
        _max = right - left
        index = prime[left]
    s.remove(hash(prime[left]))
print(index)
0