結果

問題 No.6 使いものにならないハッシュ
ユーザー 👑 rin204rin204
提出日時 2022-06-12 15:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 68,260 KB
最終ジャッジ日時 2024-09-23 04:01:53
合計ジャッジ時間 3,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,300 KB
testcase_01 AC 47 ms
60,096 KB
testcase_02 AC 57 ms
67,128 KB
testcase_03 AC 57 ms
65,092 KB
testcase_04 AC 58 ms
65,588 KB
testcase_05 AC 58 ms
66,624 KB
testcase_06 AC 59 ms
66,524 KB
testcase_07 AC 55 ms
65,120 KB
testcase_08 AC 57 ms
65,844 KB
testcase_09 AC 57 ms
64,696 KB
testcase_10 AC 48 ms
59,932 KB
testcase_11 AC 57 ms
66,020 KB
testcase_12 AC 60 ms
66,724 KB
testcase_13 AC 53 ms
62,956 KB
testcase_14 AC 56 ms
65,228 KB
testcase_15 AC 57 ms
66,132 KB
testcase_16 AC 58 ms
66,460 KB
testcase_17 AC 56 ms
65,424 KB
testcase_18 AC 60 ms
68,260 KB
testcase_19 AC 60 ms
66,372 KB
testcase_20 AC 60 ms
66,496 KB
testcase_21 AC 54 ms
63,340 KB
testcase_22 AC 57 ms
65,452 KB
testcase_23 AC 57 ms
66,600 KB
testcase_24 AC 57 ms
67,008 KB
testcase_25 AC 58 ms
65,864 KB
testcase_26 AC 59 ms
66,252 KB
testcase_27 AC 57 ms
65,164 KB
testcase_28 AC 57 ms
65,056 KB
testcase_29 AC 58 ms
65,908 KB
testcase_30 AC 60 ms
66,600 KB
testcase_31 AC 57 ms
65,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 200200
isprime = [True] * N
isprime[0] = isprime[1] = False
for i in range(2, int(N ** 0.5 + 1)):
    if not isprime[i]:
        continue
    for j in range(i * i, N, i):
        isprime[j] = False

k = int(input())
n = int(input())
primes = []
hashes = []
for i in range(k, n + 1):
    if isprime[i]:
        primes.append(i)
        hashes.append(i % 9)
max_ = 0
ans = 0
le = len(primes)
tf = [False] * 9
r = 0
for l in range(le):
    while r < le and not tf[hashes[r]]:
        tf[hashes[r]] = True
        r += 1
    if r - l >= max_:
        max_ = r - l
        ans = primes[l]
    tf[hashes[l]] = False
print(ans)
0