結果

問題 No.6 使いものにならないハッシュ
ユーザー mkawa2mkawa2
提出日時 2019-12-30 21:33:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 1,351 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,096 KB
最終ジャッジ日時 2024-09-16 16:53:41
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
12,288 KB
testcase_01 AC 46 ms
12,160 KB
testcase_02 AC 99 ms
14,096 KB
testcase_03 AC 58 ms
12,672 KB
testcase_04 AC 56 ms
12,672 KB
testcase_05 AC 61 ms
13,056 KB
testcase_06 AC 72 ms
12,928 KB
testcase_07 AC 59 ms
12,672 KB
testcase_08 AC 67 ms
12,800 KB
testcase_09 AC 51 ms
12,416 KB
testcase_10 AC 44 ms
12,288 KB
testcase_11 AC 55 ms
12,672 KB
testcase_12 AC 85 ms
13,824 KB
testcase_13 AC 49 ms
12,160 KB
testcase_14 AC 52 ms
12,416 KB
testcase_15 AC 73 ms
13,056 KB
testcase_16 AC 61 ms
12,544 KB
testcase_17 AC 84 ms
13,564 KB
testcase_18 AC 97 ms
13,696 KB
testcase_19 AC 81 ms
13,692 KB
testcase_20 AC 77 ms
13,180 KB
testcase_21 AC 50 ms
12,288 KB
testcase_22 AC 77 ms
13,180 KB
testcase_23 AC 79 ms
13,692 KB
testcase_24 AC 78 ms
13,312 KB
testcase_25 AC 62 ms
13,056 KB
testcase_26 AC 87 ms
13,696 KB
testcase_27 AC 73 ms
13,184 KB
testcase_28 AC 65 ms
13,056 KB
testcase_29 AC 92 ms
13,696 KB
testcase_30 AC 86 ms
13,564 KB
testcase_31 AC 80 ms
13,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    def hash(x):
        if x < 10: return x
        if x in memo: return memo[x]
        res = memo[x] = hash(sum(int(c) for c in str(x)))
        return res

    memo = {}

    k = II()
    n = II()
    prime = [0, 1] * 100005
    prime[1] = 0
    prime[2] = 1
    for x in range(3, 200005):
        if x ** 2 > 200005: break
        if prime[x]:
            for y in range(x ** 2, 200005, x):
                prime[y] = 0
    xx = []
    hh = []
    for x in range(k, n + 1):
        if prime[x]:
            h = hash(x)
            xx.append(x)
            hh.append(h)
    #print(xx)
    #print(hh)
    mx_len = 0
    ans_x = 0
    last_pos = [-1] * 10
    l = 0
    for r, h in enumerate(hh):
        if last_pos[h] >= l:
            length = r - last_pos[h]
            l = last_pos[h] + 1
        else:
            length = r - l + 1
        if length >= mx_len:
            mx_len = length
            ans_x = xx[r - length + 1]
        last_pos[h] = r
    #print(mx_len)
    print(ans_x)

main()
0