結果

問題 No.6 使いものにならないハッシュ
ユーザー snnekosnneko
提出日時 2019-03-18 18:49:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,444 ms / 5,000 ms
コード長 864 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,360 KB
最終ジャッジ日時 2024-09-16 16:52:46
合計ジャッジ時間 76,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
43,716 KB
testcase_01 AC 534 ms
44,100 KB
testcase_02 AC 3,444 ms
44,236 KB
testcase_03 AC 884 ms
44,220 KB
testcase_04 AC 1,388 ms
43,844 KB
testcase_05 AC 1,152 ms
44,252 KB
testcase_06 AC 2,350 ms
44,232 KB
testcase_07 AC 2,203 ms
44,356 KB
testcase_08 AC 2,401 ms
44,348 KB
testcase_09 AC 3,311 ms
44,352 KB
testcase_10 AC 541 ms
44,224 KB
testcase_11 AC 879 ms
44,360 KB
testcase_12 AC 2,314 ms
44,220 KB
testcase_13 AC 3,005 ms
44,224 KB
testcase_14 AC 3,089 ms
44,216 KB
testcase_15 AC 2,027 ms
44,228 KB
testcase_16 AC 2,946 ms
44,224 KB
testcase_17 AC 3,339 ms
43,944 KB
testcase_18 AC 3,360 ms
44,136 KB
testcase_19 AC 3,171 ms
43,716 KB
testcase_20 AC 2,587 ms
43,844 KB
testcase_21 AC 703 ms
44,224 KB
testcase_22 AC 2,966 ms
43,968 KB
testcase_23 AC 2,346 ms
44,224 KB
testcase_24 AC 2,709 ms
44,092 KB
testcase_25 AC 2,220 ms
43,840 KB
testcase_26 AC 3,175 ms
43,968 KB
testcase_27 AC 2,967 ms
44,096 KB
testcase_28 AC 1,635 ms
44,236 KB
testcase_29 AC 3,162 ms
44,096 KB
testcase_30 AC 2,682 ms
44,224 KB
testcase_31 AC 2,749 ms
44,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
K = int(input())
N = int(input())

p_list = []
for i in range(2, N+1):
    flg = 0
    for p in p_list:
        if np.sqrt(i) < p:
            break
        if i % p == 0:
            flg = 1
            break
    if flg == 0:
        p_list.append(i)

k_list = [p for p in p_list if p >= K]

hash_list = [0] * len(k_list)
for i, k in enumerate(k_list):
    if k < 10:
        hash = k % 10
    else:
        while k >= 10:
            hash = 0
            while k >= 10:
                hash += k % 10
                k //= 10
            hash += k % 10
            k = hash
    hash_list[i] = hash

result = 0
max_size = 0
j = 0
for i in range(len(hash_list)):
    while hash_list[i] in hash_list[j:i]:
        j += 1
    if max_size <= len(hash_list[j:i+1]):
        max_size = len(hash_list[j:i+1])
        result = j

print (k_list[result])
0