結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 149 ms
14,464 KB
testcase_03 AC 50 ms
11,520 KB
testcase_04 AC 63 ms
11,904 KB
testcase_05 AC 65 ms
12,032 KB
testcase_06 AC 96 ms
13,056 KB
testcase_07 AC 77 ms
12,416 KB
testcase_08 AC 91 ms
12,928 KB
testcase_09 AC 83 ms
12,544 KB
testcase_10 RE -
testcase_11 AC 51 ms
11,392 KB
testcase_12 AC 109 ms
13,440 KB
testcase_13 AC 75 ms
12,160 KB
testcase_14 AC 80 ms
12,544 KB
testcase_15 AC 91 ms
12,928 KB
testcase_16 AC 89 ms
12,928 KB
testcase_17 AC 122 ms
13,824 KB
testcase_18 AC 141 ms
14,592 KB
testcase_19 AC 117 ms
13,568 KB
testcase_20 AC 107 ms
13,312 KB
testcase_21 AC 42 ms
11,136 KB
testcase_22 AC 112 ms
13,440 KB
testcase_23 AC 104 ms
13,184 KB
testcase_24 AC 108 ms
13,440 KB
testcase_25 AC 82 ms
12,544 KB
testcase_26 AC 125 ms
13,824 KB
testcase_27 AC 106 ms
13,312 KB
testcase_28 AC 77 ms
12,416 KB
testcase_29 AC 132 ms
14,080 KB
testcase_30 AC 118 ms
13,568 KB
testcase_31 AC 111 ms
13,568 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, 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