結果

問題 No.6 使いものにならないハッシュ
ユーザー taisuketaisuke
提出日時 2023-02-19 20:01:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,000 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-20 18:30:59
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 118 ms
12,160 KB
testcase_03 AC 47 ms
10,880 KB
testcase_04 AC 61 ms
11,264 KB
testcase_05 AC 57 ms
11,008 KB
testcase_06 AC 87 ms
11,520 KB
testcase_07 AC 80 ms
11,648 KB
testcase_08 AC 88 ms
11,648 KB
testcase_09 AC 104 ms
12,288 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 47 ms
10,880 KB
testcase_12 AC 89 ms
11,520 KB
testcase_13 AC 96 ms
12,032 KB
testcase_14 AC 97 ms
12,032 KB
testcase_15 AC 81 ms
11,520 KB
testcase_16 AC 98 ms
11,776 KB
testcase_17 AC 111 ms
12,032 KB
testcase_18 AC 114 ms
12,160 KB
testcase_19 AC 108 ms
11,904 KB
testcase_20 AC 96 ms
11,648 KB
testcase_21 AC 42 ms
10,752 KB
testcase_22 AC 102 ms
11,904 KB
testcase_23 AC 91 ms
11,520 KB
testcase_24 AC 96 ms
11,776 KB
testcase_25 AC 82 ms
11,648 KB
testcase_26 AC 107 ms
12,032 KB
testcase_27 AC 101 ms
12,160 KB
testcase_28 AC 72 ms
11,264 KB
testcase_29 AC 110 ms
12,032 KB
testcase_30 AC 100 ms
11,904 KB
testcase_31 AC 99 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(n):
    sieve = [True] * ((n + 1) // 2)
    for i in range(1, (int(n ** 0.5) + 1) // 2):
        if sieve[i]:
            for j in range(i * 3 + 1, (n + 1) // 2, i * 2 + 1):
                sieve[j] = False
    res = [i * 2 + 1 for i, s in enumerate(sieve) if s]
    res[0] = 2
    return res


def f(n):
    if n < 10:
        return n
    ret = sum(list(map(int, str(n))))
    return f(ret)


k = int(input())
n = int(input())
prime = Eratosthenes(n)
val = list()
for p in prime:
    val.append(f(p))

start = 0
for i in range(len(prime)):
    if prime[i] >= k:
        start = i
        break

used = [False] * 10
ans = prime[start]
maxlen = 0
right = start
for left in range(start, len(val)):
    while right < len(val) and used[val[right]] == False:
        used[val[right]] = True
        right += 1
    if maxlen <= right - left + 1:
        maxlen = right - left + 1
        ans = prime[left]

    if left == right:
        right += 1
    used[val[left]] = False

print(ans)
0