結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
44,360 KB
testcase_01 AC 492 ms
43,720 KB
testcase_02 AC 3,334 ms
43,716 KB
testcase_03 AC 843 ms
43,736 KB
testcase_04 AC 1,312 ms
44,100 KB
testcase_05 AC 1,203 ms
44,352 KB
testcase_06 AC 2,326 ms
44,232 KB
testcase_07 AC 2,144 ms
43,848 KB
testcase_08 AC 2,322 ms
44,240 KB
testcase_09 AC 3,111 ms
43,852 KB
testcase_10 AC 477 ms
43,860 KB
testcase_11 AC 803 ms
43,976 KB
testcase_12 AC 2,087 ms
44,360 KB
testcase_13 AC 2,775 ms
44,288 KB
testcase_14 AC 2,873 ms
43,716 KB
testcase_15 AC 1,890 ms
44,228 KB
testcase_16 AC 2,779 ms
44,240 KB
testcase_17 AC 3,127 ms
43,852 KB
testcase_18 AC 3,196 ms
43,848 KB
testcase_19 AC 3,006 ms
43,976 KB
testcase_20 AC 2,420 ms
43,720 KB
testcase_21 AC 637 ms
44,236 KB
testcase_22 AC 3,011 ms
44,228 KB
testcase_23 AC 2,232 ms
44,228 KB
testcase_24 AC 2,503 ms
43,852 KB
testcase_25 AC 2,004 ms
44,100 KB
testcase_26 AC 3,084 ms
44,104 KB
testcase_27 AC 2,784 ms
43,964 KB
testcase_28 AC 1,536 ms
43,852 KB
testcase_29 AC 2,875 ms
43,972 KB
testcase_30 AC 2,434 ms
43,720 KB
testcase_31 AC 2,514 ms
43,844 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 = list()
for k in 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.append(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