結果

問題 No.6 使いものにならないハッシュ
ユーザー tnodinotnodino
提出日時 2022-01-30 15:16:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 950 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-11 08:17:41
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 90 ms
80,000 KB
testcase_03 AC 70 ms
70,784 KB
testcase_04 AC 74 ms
72,704 KB
testcase_05 AC 72 ms
73,472 KB
testcase_06 AC 88 ms
77,952 KB
testcase_07 AC 82 ms
73,472 KB
testcase_08 AC 73 ms
74,752 KB
testcase_09 AC 70 ms
70,912 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 AC 76 ms
71,936 KB
testcase_12 AC 83 ms
78,336 KB
testcase_13 AC 67 ms
68,096 KB
testcase_14 AC 72 ms
70,400 KB
testcase_15 AC 85 ms
77,952 KB
testcase_16 AC 71 ms
72,192 KB
testcase_17 AC 82 ms
78,720 KB
testcase_18 AC 83 ms
79,488 KB
testcase_19 AC 84 ms
78,976 KB
testcase_20 AC 81 ms
78,080 KB
testcase_21 AC 66 ms
68,480 KB
testcase_22 AC 81 ms
78,336 KB
testcase_23 AC 82 ms
78,336 KB
testcase_24 AC 81 ms
78,208 KB
testcase_25 AC 68 ms
72,064 KB
testcase_26 AC 88 ms
78,976 KB
testcase_27 AC 80 ms
78,208 KB
testcase_28 AC 70 ms
73,856 KB
testcase_29 AC 81 ms
78,848 KB
testcase_30 AC 91 ms
78,720 KB
testcase_31 AC 89 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def SieveofEratosthenes(N):
    P = [0] * (N+1)
    P[0] = P[1] = -1
    for i in range(2,N+1):
        if P[i] == 0:
            k = i
            while k <= N:
                P[k] = i
                k += i
            P[i] = 0
    return P

def hash(N):
    if N in dic:
        return dic[N]
    x = N
    S = 0
    while x:
        S += x % 10
        x //= 10
    dic[N] = hash(S)
    return dic[N]

K = int(input())
N = int(input())
P = SieveofEratosthenes(N)
C = []
for i in range(K,N+1):
    if P[i] == 0:
        C.append(i)
dic = {}
for i in range(10):
    dic[i] = i
M = len(C)
F = []
for i in range(M):
    F.append(hash(C[i]))
dic = defaultdict(int)
Left = 0
Length = 0
ans = 0
for Right in range(M):
    dic[F[Right]] += 1
    while dic[F[Right]] >= 2:
        dic[F[Left]] -= 1
        Left += 1
    if Right - Left + 1 >= Length:
        Length = Right - Left + 1
        ans = C[Left]
print(ans)
0