結果

問題 No.6 使いものにならないハッシュ
ユーザー momoyuumomoyuu
提出日時 2022-08-03 00:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 999 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,240 KB
最終ジャッジ日時 2024-07-23 18:29:34
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,312 KB
testcase_01 AC 36 ms
52,872 KB
testcase_02 AC 94 ms
77,780 KB
testcase_03 AC 67 ms
76,512 KB
testcase_04 AC 72 ms
76,756 KB
testcase_05 AC 76 ms
76,548 KB
testcase_06 AC 85 ms
77,112 KB
testcase_07 AC 75 ms
77,488 KB
testcase_08 AC 89 ms
77,200 KB
testcase_09 AC 75 ms
77,616 KB
testcase_10 AC 37 ms
52,468 KB
testcase_11 AC 72 ms
76,496 KB
testcase_12 AC 92 ms
77,196 KB
testcase_13 AC 72 ms
77,688 KB
testcase_14 AC 73 ms
77,588 KB
testcase_15 AC 85 ms
77,088 KB
testcase_16 AC 79 ms
77,520 KB
testcase_17 AC 89 ms
78,240 KB
testcase_18 AC 92 ms
77,628 KB
testcase_19 AC 89 ms
77,660 KB
testcase_20 AC 92 ms
77,408 KB
testcase_21 AC 69 ms
76,492 KB
testcase_22 AC 88 ms
77,584 KB
testcase_23 AC 90 ms
77,140 KB
testcase_24 AC 91 ms
77,788 KB
testcase_25 AC 78 ms
77,252 KB
testcase_26 AC 95 ms
77,796 KB
testcase_27 AC 86 ms
77,452 KB
testcase_28 AC 80 ms
76,852 KB
testcase_29 AC 98 ms
78,048 KB
testcase_30 AC 94 ms
77,612 KB
testcase_31 AC 90 ms
77,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
N = int(input())

def calc(n):
    now = n
    while now >= 10:
        a = str(now)
        now = 0
        for i in a:
            now += int(i)
    return now

def era(n):
    """
    n以下の素数をリストで小さい順に返す。
    O(nlognlogn)
    """
    s = [1 for _ in range(n+1)]
    for i in range(2,n+1):
        if s[i] == 0:
            continue
        j = 2
        while j * i <= n:
            s[j*i] = 0
            j += 1
    l = []
    for i in range(2,n+1):
        if s[i] == 1:
            l.append(i)
    return l

l = era(N)
now = 0
li = []
nn = 0
for i in range(len(l)):
    if l[i] < K:
        continue
    s = set()
    k = 0
    for j in range(10):
        ni = i + j
        k = j
        if ni >= len(l):
            break
        a = calc(l[ni])
        if a in s:
            break
        s.add(a)
    if now <= k:
        now = k
        nn = l[i]
        li = []
        for j in range(now):
            li.append(l[i + j])

print(nn)
0