結果

問題 No.6 使いものにならないハッシュ
ユーザー nagitaosunagitaosu
提出日時 2020-03-13 03:52:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 994 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-16 16:55:05
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 152 ms
12,928 KB
testcase_03 AC 52 ms
11,008 KB
testcase_04 AC 57 ms
11,392 KB
testcase_05 AC 65 ms
11,264 KB
testcase_06 AC 93 ms
12,032 KB
testcase_07 AC 68 ms
11,904 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 60 ms
12,416 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 51 ms
11,136 KB
testcase_12 AC 109 ms
12,160 KB
testcase_13 AC 53 ms
12,032 KB
testcase_14 AC 59 ms
12,032 KB
testcase_15 AC 93 ms
11,776 KB
testcase_16 AC 74 ms
12,288 KB
testcase_17 AC 113 ms
12,928 KB
testcase_18 AC 142 ms
12,800 KB
testcase_19 AC 112 ms
12,544 KB
testcase_20 AC 104 ms
12,288 KB
testcase_21 AC 41 ms
10,880 KB
testcase_22 AC 106 ms
12,416 KB
testcase_23 AC 104 ms
12,032 KB
testcase_24 AC 105 ms
12,288 KB
testcase_25 AC 74 ms
11,904 KB
testcase_26 AC 122 ms
12,800 KB
testcase_27 AC 97 ms
12,544 KB
testcase_28 AC 75 ms
11,648 KB
testcase_29 AC 128 ms
12,672 KB
testcase_30 AC 119 ms
12,416 KB
testcase_31 AC 106 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline

# O(nloglogn)
def primes(k, n):
    is_prime = [True] * (n + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n**0.5) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * 2, n + 1, i):
            is_prime[j] = False
    return [i for i in range(k, n + 1) if is_prime[i]]

def hash(n):
    while n >= 10:
        t = 0
        while n > 0:
            t += n % 10
            n //= 10
        n = t
    return n

k = int(input())
n = int(input())

p = primes(k, n)
d = []
for item in p:
    digits = sum([int(dgt) for dgt in str(item)])
    d.append(hash(item))
max_length = 0
ans = 0
for i, item in enumerate(d):
    cnt = [0] * 10
    cnt[item] += 1
    for j in range(i + 1, len(d) + 1):
        if j == len(d) or cnt[d[j]] > 0:
            break
        else:
            cnt[d[j]] += 1
    if j - i >= max_length:
        ans = i
        max_length = j - i
print(p[ans])
0