結果

問題 No.6 使いものにならないハッシュ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-28 16:47:40
合計ジャッジ時間 4,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 133 ms
77,312 KB
testcase_03 AC 83 ms
76,800 KB
testcase_04 AC 99 ms
76,544 KB
testcase_05 AC 87 ms
76,928 KB
testcase_06 AC 118 ms
76,800 KB
testcase_07 AC 92 ms
76,416 KB
testcase_08 AC 109 ms
76,672 KB
testcase_09 AC 106 ms
76,400 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 94 ms
76,672 KB
testcase_12 AC 104 ms
76,544 KB
testcase_13 AC 108 ms
76,288 KB
testcase_14 AC 101 ms
76,292 KB
testcase_15 AC 110 ms
76,672 KB
testcase_16 AC 102 ms
76,288 KB
testcase_17 AC 121 ms
76,672 KB
testcase_18 AC 116 ms
76,848 KB
testcase_19 AC 125 ms
77,056 KB
testcase_20 AC 105 ms
77,056 KB
testcase_21 AC 86 ms
76,416 KB
testcase_22 AC 105 ms
77,184 KB
testcase_23 AC 114 ms
76,544 KB
testcase_24 AC 104 ms
76,584 KB
testcase_25 AC 108 ms
76,672 KB
testcase_26 AC 106 ms
76,928 KB
testcase_27 AC 116 ms
76,672 KB
testcase_28 AC 92 ms
77,004 KB
testcase_29 AC 129 ms
76,928 KB
testcase_30 AC 110 ms
76,672 KB
testcase_31 AC 119 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

primes = []
l = []
for i in range(2,n+1):
    check = True
    for p in primes:
        if p**2 > i:
            break
        if i%p == 0:
            check = False
            break
    if check:
        primes.append(i)
        if k <= i <= n:
            l.append(i)

def hash(x):
    now = x
    while True:
        now = sum([int(i) for i in str(now)])
        if now < 10:
            return now

count = [0]*10
now = 0
ans = []
hashl = [hash(i) for i in l]

for i,h in enumerate(hashl):
    while now < len(l) and count[hashl[now]] == 0:
        count[hashl[now]] += 1
        now += 1
    ans.append(now-i)
    count[hashl[i]] -= 1
m = max(ans)
for i in range(len(ans))[::-1]:
    if ans[i] == m:
        print(l[i])
        exit()
0