結果

問題 No.6 使いものにならないハッシュ
ユーザー nisizawanisizawa
提出日時 2017-12-19 16:06:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 910 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-09-16 16:42:59
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 133 ms
14,464 KB
testcase_03 AC 46 ms
11,392 KB
testcase_04 AC 55 ms
11,648 KB
testcase_05 AC 56 ms
11,904 KB
testcase_06 AC 91 ms
12,800 KB
testcase_07 AC 68 ms
12,288 KB
testcase_08 AC 81 ms
12,800 KB
testcase_09 AC 75 ms
12,544 KB
testcase_10 RE -
testcase_11 AC 46 ms
11,264 KB
testcase_12 AC 94 ms
13,056 KB
testcase_13 AC 64 ms
12,288 KB
testcase_14 AC 69 ms
12,288 KB
testcase_15 AC 83 ms
12,800 KB
testcase_16 AC 79 ms
12,800 KB
testcase_17 AC 107 ms
13,824 KB
testcase_18 AC 127 ms
14,464 KB
testcase_19 AC 103 ms
13,696 KB
testcase_20 AC 97 ms
13,056 KB
testcase_21 AC 40 ms
11,008 KB
testcase_22 AC 103 ms
13,440 KB
testcase_23 AC 96 ms
13,056 KB
testcase_24 AC 93 ms
13,184 KB
testcase_25 AC 72 ms
12,672 KB
testcase_26 AC 116 ms
13,696 KB
testcase_27 AC 100 ms
13,312 KB
testcase_28 AC 71 ms
12,288 KB
testcase_29 AC 121 ms
13,952 KB
testcase_30 AC 107 ms
13,568 KB
testcase_31 AC 100 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

def prime_ls(k, n):
    ls = [False if i % 2 == 0 or i % 3 == 0 or i % 5 == 0 else True for i in range(n + 1)]
    ls[0] = ls[1] = False
    ls[2] = ls[3] = ls[5] = True

    for i in range(3, int(n**0.5) + 1, 2):
        for j in range(i**2, n + 1, i): 
            ls[j] = False
    
    return [p for p, is_prime in enumerate(ls[k:], k) if is_prime]

@lru_cache(maxsize=None)
def hash(n):
    s = str(n)
    return hash(sum([int(c) for c in s])) if len(s) >= 2 else n

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, hr = h_ls[l], 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