結果

問題 No.6 使いものにならないハッシュ
ユーザー nisizawanisizawa
提出日時 2017-12-19 15:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 780 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-09-16 16:42:47
合計ジャッジ時間 6,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 402 ms
15,360 KB
testcase_03 AC 61 ms
11,264 KB
testcase_04 AC 77 ms
11,520 KB
testcase_05 AC 99 ms
12,096 KB
testcase_06 AC 193 ms
12,928 KB
testcase_07 AC 107 ms
11,904 KB
testcase_08 AC 167 ms
12,468 KB
testcase_09 AC 73 ms
11,136 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 66 ms
11,520 KB
testcase_12 AC 244 ms
13,816 KB
testcase_13 AC 55 ms
11,008 KB
testcase_14 AC 72 ms
11,136 KB
testcase_15 AC 187 ms
12,928 KB
testcase_16 AC 130 ms
11,776 KB
testcase_17 AC 274 ms
13,972 KB
testcase_18 AC 381 ms
14,720 KB
testcase_19 AC 262 ms
13,928 KB
testcase_20 AC 228 ms
13,184 KB
testcase_21 AC 47 ms
11,008 KB
testcase_22 AC 257 ms
13,568 KB
testcase_23 AC 241 ms
13,936 KB
testcase_24 AC 235 ms
13,440 KB
testcase_25 AC 127 ms
12,340 KB
testcase_26 AC 297 ms
14,288 KB
testcase_27 AC 209 ms
13,056 KB
testcase_28 AC 130 ms
12,544 KB
testcase_29 AC 329 ms
14,560 KB
testcase_30 AC 279 ms
14,360 KB
testcase_31 AC 240 ms
13,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

def prime_ls(k, n):
    ls = [i for i in range(max(2, k), n + 1) if i == 2 or not i % 2 == 0]
    for i in range(3, int(n**0.5) + 1, 2):
        ls = [j for j in ls if j == i or not j % i == 0]
    return ls

@lru_cache(maxsize=None)
def hash(n):
    if n // 10 == 0:
        return n
    s = str(n)
    return hash(sum([int(c) for c in s]))

k = int(input())
n = int(input())

p_ls = prime_ls(k, n)
h_ls = [hash(p) for p in p_ls]

l, r = 0, 0
max_len = 0

memo = [False] * 10

while r < len(h_ls):
    hl = h_ls[l]
    hr = h_ls[r]
    if memo[hr]:
        memo[hl] = False
        l += 1
    else:
        memo[hr] = True
        r += 1
    
    lr_len = r - l
    if lr_len >= max_len:
        max_len = lr_len
        ans = p_ls[l]

print(ans)
0