結果

問題 No.6 使いものにならないハッシュ
ユーザー lloyzlloyz
提出日時 2022-03-09 22:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 972 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 76,100 KB
最終ジャッジ日時 2024-09-14 00:25:08
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
64,912 KB
testcase_01 AC 61 ms
66,728 KB
testcase_02 AC 80 ms
74,932 KB
testcase_03 AC 79 ms
73,300 KB
testcase_04 AC 80 ms
73,416 KB
testcase_05 AC 83 ms
74,152 KB
testcase_06 AC 84 ms
75,792 KB
testcase_07 AC 75 ms
71,680 KB
testcase_08 AC 77 ms
72,388 KB
testcase_09 AC 75 ms
71,384 KB
testcase_10 AC 60 ms
65,668 KB
testcase_11 AC 76 ms
74,344 KB
testcase_12 AC 85 ms
75,728 KB
testcase_13 AC 70 ms
70,952 KB
testcase_14 AC 81 ms
74,252 KB
testcase_15 AC 80 ms
72,944 KB
testcase_16 AC 83 ms
74,072 KB
testcase_17 AC 83 ms
75,364 KB
testcase_18 AC 85 ms
75,996 KB
testcase_19 AC 82 ms
75,832 KB
testcase_20 AC 85 ms
76,100 KB
testcase_21 AC 74 ms
71,480 KB
testcase_22 AC 78 ms
74,504 KB
testcase_23 AC 78 ms
73,620 KB
testcase_24 AC 78 ms
74,528 KB
testcase_25 AC 82 ms
74,316 KB
testcase_26 AC 81 ms
73,576 KB
testcase_27 AC 80 ms
73,224 KB
testcase_28 AC 77 ms
72,436 KB
testcase_29 AC 79 ms
75,136 KB
testcase_30 AC 84 ms
75,568 KB
testcase_31 AC 79 ms
73,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

IsPrime = [True for _ in range(2 * 10**5 + 1)]
IsPrime[0] = IsPrime[1] = False
for i in range(2, 2 * 10**5 + 1):
    if IsPrime[i]:
        for j in range(i + i, 2 * 10**5 + 1, i):
            IsPrime[j] = False

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

from collections import defaultdict

Prime = []
L = []
for i in range(n, k + 1):
    if IsPrime[i]:
        Prime.append(i)
        ic = i
        while ic > 9:
            temp = 0
            while ic != 0:
                temp += ic % 10
                ic //= 10
            ic = temp
        L.append(ic)

m = len(Prime)
counter = defaultdict(int)
DP = [0 for _ in range(m)]
right = 0
length = 0
ans = 0
for left in range(m):
    while right < m:
        counter[L[right]] += 1
        if counter[L[right]] == 2:
            counter[L[right]] -= 1
            break
        right += 1
    if right - left >= length:
        length = right - left
        ans = max(ans, Prime[left])
    counter[L[left]] -= 1
print(ans)
0