結果

問題 No.6 使いものにならないハッシュ
ユーザー KudeKude
提出日時 2020-09-03 07:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 78,420 KB
最終ジャッジ日時 2024-09-16 16:59:00
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,856 KB
testcase_01 AC 41 ms
55,980 KB
testcase_02 AC 93 ms
78,348 KB
testcase_03 AC 84 ms
77,136 KB
testcase_04 AC 84 ms
77,072 KB
testcase_05 AC 83 ms
77,336 KB
testcase_06 AC 88 ms
77,896 KB
testcase_07 AC 84 ms
77,700 KB
testcase_08 AC 87 ms
77,912 KB
testcase_09 AC 74 ms
76,036 KB
testcase_10 AC 42 ms
55,036 KB
testcase_11 AC 81 ms
77,276 KB
testcase_12 AC 85 ms
77,736 KB
testcase_13 AC 72 ms
74,416 KB
testcase_14 AC 84 ms
77,956 KB
testcase_15 AC 82 ms
77,732 KB
testcase_16 AC 83 ms
77,908 KB
testcase_17 AC 96 ms
78,396 KB
testcase_18 AC 89 ms
78,388 KB
testcase_19 AC 91 ms
78,260 KB
testcase_20 AC 85 ms
78,004 KB
testcase_21 AC 78 ms
76,840 KB
testcase_22 AC 85 ms
78,172 KB
testcase_23 AC 83 ms
77,696 KB
testcase_24 AC 85 ms
78,076 KB
testcase_25 AC 86 ms
77,640 KB
testcase_26 AC 90 ms
78,420 KB
testcase_27 AC 81 ms
78,084 KB
testcase_28 AC 80 ms
77,412 KB
testcase_29 AC 86 ms
78,232 KB
testcase_30 AC 94 ms
78,044 KB
testcase_31 AC 84 ms
78,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
n = int(input())
sieve = [True] * (n + 1)
primes = []
for p in range(2, n + 1):
    if sieve[p]:
        if p >= k:
            primes.append(p)
        for i in range(p * p, n + 1, p):
            sieve[i] = False
seen = [False] * 10
mx = 0
now = 0
from collections import deque
q = deque()
for p in primes:
    po = p
    while p >= 10:
        p = sum(map(int, str(p)))
    while seen[p]:
        i, _ = q.popleft()
        seen[i] = False
        now -= 1
    q.append((p, po))
    seen[p] = True
    now += 1
    if now >= mx:
        ans = q[0][1]
        mx = now
print(ans)
0