結果

問題 No.6 使いものにならないハッシュ
ユーザー roarisroaris
提出日時 2019-10-27 20:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 907 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-16 16:52:55
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 99 ms
77,568 KB
testcase_03 AC 77 ms
76,520 KB
testcase_04 AC 80 ms
77,056 KB
testcase_05 AC 82 ms
76,672 KB
testcase_06 AC 83 ms
77,184 KB
testcase_07 AC 76 ms
76,908 KB
testcase_08 AC 79 ms
77,168 KB
testcase_09 AC 74 ms
74,496 KB
testcase_10 AC 42 ms
53,504 KB
testcase_11 AC 75 ms
76,560 KB
testcase_12 AC 85 ms
77,056 KB
testcase_13 AC 67 ms
69,760 KB
testcase_14 AC 73 ms
74,240 KB
testcase_15 AC 78 ms
76,784 KB
testcase_16 AC 88 ms
77,332 KB
testcase_17 AC 90 ms
77,580 KB
testcase_18 AC 89 ms
77,696 KB
testcase_19 AC 89 ms
77,440 KB
testcase_20 AC 96 ms
77,312 KB
testcase_21 AC 69 ms
72,192 KB
testcase_22 AC 81 ms
77,196 KB
testcase_23 AC 80 ms
77,056 KB
testcase_24 AC 81 ms
77,272 KB
testcase_25 AC 80 ms
76,860 KB
testcase_26 AC 84 ms
77,568 KB
testcase_27 AC 79 ms
77,236 KB
testcase_28 AC 77 ms
76,704 KB
testcase_29 AC 87 ms
77,664 KB
testcase_30 AC 85 ms
77,184 KB
testcase_31 AC 80 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def era(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(2*i, n+1, i):
            is_prime[j] = False
    
    return [i for i in range(K, n+1) if is_prime[i]]
    
def calc(n):
    if len(str(n)) == 1:
        return n
    
    s = 0
    
    for ni in str(n):
        s += int(ni)
    
    return calc(s)

K = int(input())
N = int(input())
primes = era(N)
hashed = [calc(p) for p in primes]

r = 0
length = 0
d = defaultdict(int)

for l in range(len(hashed)):
    while r < len(hashed) and d[hashed[r]] == 0:
        d[hashed[r]] += 1
        r += 1
    
    if length <= r-l:
        length = r-l
        ans = primes[l]
        
    if l == r:
        r += 1
    
    d[hashed[l]] -= 1
    l += 1

print(ans)
0