結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
44,232 KB
testcase_01 AC 505 ms
44,240 KB
testcase_02 AC 3,437 ms
44,228 KB
testcase_03 AC 844 ms
44,496 KB
testcase_04 AC 1,343 ms
43,848 KB
testcase_05 AC 1,120 ms
44,236 KB
testcase_06 AC 2,372 ms
44,236 KB
testcase_07 AC 2,170 ms
44,352 KB
testcase_08 AC 2,373 ms
43,884 KB
testcase_09 AC 3,314 ms
44,232 KB
testcase_10 AC 501 ms
44,352 KB
testcase_11 AC 847 ms
43,968 KB
testcase_12 AC 2,266 ms
44,232 KB
testcase_13 AC 2,997 ms
43,848 KB
testcase_14 AC 3,051 ms
44,232 KB
testcase_15 AC 1,993 ms
44,360 KB
testcase_16 AC 2,958 ms
43,848 KB
testcase_17 AC 3,317 ms
44,356 KB
testcase_18 AC 3,342 ms
44,224 KB
testcase_19 AC 3,185 ms
43,980 KB
testcase_20 AC 2,600 ms
43,980 KB
testcase_21 AC 679 ms
44,232 KB
testcase_22 AC 2,968 ms
44,228 KB
testcase_23 AC 2,342 ms
44,352 KB
testcase_24 AC 2,695 ms
44,356 KB
testcase_25 AC 2,204 ms
44,360 KB
testcase_26 AC 3,168 ms
44,224 KB
testcase_27 AC 2,942 ms
44,452 KB
testcase_28 AC 1,632 ms
44,232 KB
testcase_29 AC 3,166 ms
43,848 KB
testcase_30 AC 2,675 ms
43,852 KB
testcase_31 AC 2,738 ms
44,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# #S = list(map(int, input().split()))
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:
        ans = k % 10
    else:
        while k >= 10:
            ans = 0
            while k >= 10:
                ans += k % 10
                k //= 10
            ans += k % 10
            k = ans
    hash_list.append(ans)

result = 0
max_size = 0
result_list = []
for i, j in enumerate(hash_list):
    while True:
        if j in result_list:
            result_list.pop(0)
            continue
        else:
            result_list.append(j)
            break
    if max_size <= len(result_list):
        max_size = len(result_list)
        result = i - (len(result_list) - 1)

print (k_list[result])
0