結果

問題 No.6 使いものにならないハッシュ
ユーザー ntudantuda
提出日時 2024-02-25 22:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 878 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 104,900 KB
最終ジャッジ日時 2024-09-29 11:24:23
合計ジャッジ時間 4,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,640 KB
testcase_01 AC 35 ms
53,016 KB
testcase_02 AC 137 ms
104,900 KB
testcase_03 AC 58 ms
76,424 KB
testcase_04 AC 71 ms
78,756 KB
testcase_05 AC 66 ms
77,496 KB
testcase_06 AC 103 ms
91,288 KB
testcase_07 AC 94 ms
89,312 KB
testcase_08 AC 102 ms
91,848 KB
testcase_09 AC 132 ms
103,888 KB
testcase_10 AC 35 ms
53,944 KB
testcase_11 AC 58 ms
76,548 KB
testcase_12 AC 99 ms
89,916 KB
testcase_13 AC 123 ms
100,104 KB
testcase_14 AC 121 ms
100,460 KB
testcase_15 AC 90 ms
86,568 KB
testcase_16 AC 118 ms
99,516 KB
testcase_17 AC 135 ms
104,132 KB
testcase_18 AC 138 ms
104,308 KB
testcase_19 AC 131 ms
101,708 KB
testcase_20 AC 110 ms
93,964 KB
testcase_21 AC 51 ms
72,160 KB
testcase_22 AC 121 ms
99,352 KB
testcase_23 AC 103 ms
91,308 KB
testcase_24 AC 112 ms
96,268 KB
testcase_25 AC 96 ms
89,444 KB
testcase_26 AC 127 ms
101,688 KB
testcase_27 AC 119 ms
99,180 KB
testcase_28 AC 82 ms
81,620 KB
testcase_29 AC 141 ms
101,756 KB
testcase_30 AC 113 ms
95,624 KB
testcase_31 AC 115 ms
95,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    if N == 2:
        return []
    max = int(N ** 0.5)
    seachList = [i for i in range(2, N + 1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

from bisect import bisect_left
K = int(input())
N = int(input())
PL = seachPrimeNum(N)
k = bisect_left(PL, K)
X = [-1] * 10

def f(x):
    while x >= 10:
        ret = 0
        while x > 0:
            ret += x % 10
            x //= 10
        x = ret
    return x

n = len(PL)
i = n - 1
tmp2 = 0
tmp = n - 1
ans = 2
while i >= k:
    h = f(PL[i])
    if X[h] != -1:
        if tmp >= X[h]:
            tmp = X[h] - 1
    X[h] = i
    if tmp2 < tmp - i + 1:
        tmp2 = tmp - i + 1
        ans = PL[i]
    i -= 1
print(ans)
0