結果

問題 No.6 使いものにならないハッシュ
ユーザー roarisroaris
提出日時 2019-10-27 20:24:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 905 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 77,804 KB
最終ジャッジ日時 2024-09-16 16:53:05
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 43 ms
54,144 KB
testcase_02 AC 85 ms
77,804 KB
testcase_03 AC 71 ms
74,708 KB
testcase_04 AC 75 ms
76,836 KB
testcase_05 AC 80 ms
76,504 KB
testcase_06 AC 85 ms
77,056 KB
testcase_07 AC 75 ms
76,976 KB
testcase_08 AC 77 ms
77,156 KB
testcase_09 AC 72 ms
74,112 KB
testcase_10 AC 41 ms
53,888 KB
testcase_11 AC 75 ms
76,436 KB
testcase_12 AC 84 ms
77,320 KB
testcase_13 AC 65 ms
69,376 KB
testcase_14 AC 72 ms
74,240 KB
testcase_15 AC 81 ms
77,056 KB
testcase_16 AC 81 ms
77,112 KB
testcase_17 AC 82 ms
77,568 KB
testcase_18 AC 89 ms
77,440 KB
testcase_19 AC 87 ms
77,440 KB
testcase_20 AC 88 ms
77,408 KB
testcase_21 AC 67 ms
72,192 KB
testcase_22 AC 81 ms
77,312 KB
testcase_23 AC 79 ms
76,928 KB
testcase_24 AC 79 ms
77,300 KB
testcase_25 AC 78 ms
77,056 KB
testcase_26 AC 85 ms
77,440 KB
testcase_27 AC 80 ms
77,200 KB
testcase_28 AC 75 ms
76,728 KB
testcase_29 AC 83 ms
77,568 KB
testcase_30 AC 84 ms
77,168 KB
testcase_31 AC 79 ms
77,288 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
    else:
        d[hashed[l]] -= 1

print(ans)
0