結果

問題 No.6 使いものにならないハッシュ
ユーザー H3PO4H3PO4
提出日時 2020-04-17 11:03:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 678 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-16 16:55:34
合計ジャッジ時間 3,642 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 134 ms
13,056 KB
testcase_03 AC 46 ms
11,008 KB
testcase_04 AC 54 ms
11,392 KB
testcase_05 AC 60 ms
11,008 KB
testcase_06 AC 90 ms
12,032 KB
testcase_07 AC 68 ms
11,648 KB
testcase_08 AC 80 ms
12,032 KB
testcase_09 AC 66 ms
12,032 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 47 ms
11,008 KB
testcase_12 AC 98 ms
12,160 KB
testcase_13 AC 59 ms
11,776 KB
testcase_14 AC 63 ms
12,160 KB
testcase_15 AC 80 ms
11,904 KB
testcase_16 AC 72 ms
12,160 KB
testcase_17 AC 103 ms
12,672 KB
testcase_18 AC 124 ms
12,800 KB
testcase_19 AC 104 ms
12,672 KB
testcase_20 AC 95 ms
12,288 KB
testcase_21 AC 37 ms
11,008 KB
testcase_22 AC 97 ms
12,288 KB
testcase_23 AC 95 ms
12,160 KB
testcase_24 AC 94 ms
12,288 KB
testcase_25 AC 70 ms
11,776 KB
testcase_26 AC 110 ms
12,416 KB
testcase_27 AC 89 ms
12,416 KB
testcase_28 AC 67 ms
11,648 KB
testcase_29 AC 115 ms
12,800 KB
testcase_30 AC 105 ms
12,544 KB
testcase_31 AC 97 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n ** 0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return (i for i in range(n + 1) if is_prime[i])


idx_lst = [None] * 10
P = tuple(filter(lambda x: x >= K, primes(N)))
ans = P[0]
l = 0
M = 0
for r, p in enumerate(P):
    while p >= 10:
        p = sum(int(x) for x in str(p))
    if idx_lst[p] is not None:
        l = max(l, idx_lst[p] + 1)
    idx_lst[p] = r
    if M <= r - l:
        ans = P[l]
        M = r - l
print(ans)
0