結果

問題 No.6 使いものにならないハッシュ
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-06 23:44:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 1,421 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,748 KB
最終ジャッジ日時 2024-09-16 16:28:24
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 59 ms
12,512 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 38 ms
11,264 KB
testcase_05 AC 41 ms
11,308 KB
testcase_06 AC 43 ms
11,816 KB
testcase_07 AC 40 ms
11,916 KB
testcase_08 AC 43 ms
11,624 KB
testcase_09 AC 41 ms
12,012 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 AC 47 ms
11,984 KB
testcase_13 AC 35 ms
11,844 KB
testcase_14 AC 39 ms
12,244 KB
testcase_15 AC 45 ms
11,524 KB
testcase_16 AC 44 ms
11,828 KB
testcase_17 AC 51 ms
12,120 KB
testcase_18 AC 57 ms
12,748 KB
testcase_19 AC 51 ms
12,132 KB
testcase_20 AC 48 ms
12,060 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 50 ms
12,028 KB
testcase_23 AC 48 ms
12,000 KB
testcase_24 AC 50 ms
12,100 KB
testcase_25 AC 42 ms
11,524 KB
testcase_26 AC 54 ms
12,128 KB
testcase_27 AC 47 ms
12,152 KB
testcase_28 AC 41 ms
11,552 KB
testcase_29 AC 53 ms
12,332 KB
testcase_30 AC 50 ms
11,960 KB
testcase_31 AC 50 ms
12,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes2(limit):
    ''' returns a list of prime numbers upto limit.
    source: Rossetta code: Sieve of Eratosthenes
    http://rosettacode.org/wiki/Sieve_of_Eratosthenes#Odds-only_version_of_the_array_sieve_above
    '''
    if limit < 2: return []
    if limit < 3: return [2]
    lmtbf = (limit - 3) // 2
    buf = [True] * (lmtbf + 1)
    for i in range((int(limit ** 0.5) - 3) // 2 + 1):
        if buf[i]:
            p = i + i + 3
            s = p * (i + 1) + i
            buf[s::p] = [False] * ((lmtbf - s) // p + 1)
    return [2] + [i + i + 3 for i, v in enumerate(buf) if v]


def h(p):
    p, r = divmod(p, 10)
    cump = r
    while p >= 10:
        p, r = divmod(p, 10)
        cump += r
    cump += p
    if cump < 10:
        return cump
    else:
        return h(cump)


def solve(K, N):
    hashed = [(h(p), p) for p in primes2(N) if p >= K]
    head = 0
    tail = 0
    freq = [0] * 10
    freq[hashed[0][0]] = 1
    record = 1
    mark = hashed[0][1]
    goal = len(hashed) - 1
    score = 1
    while tail < goal:
        tail += 1
        c, p = hashed[tail]
        freq[c] += 1
        while freq[c] >= 2:
            cc, pp = hashed[head]
            freq[cc] -= 1
            score -= 1
            head += 1
        score += 1
        if score >= record:
            record = score
            mark = hashed[head][1]
    return mark

K = int(input())
N = int(input())
print(solve(K, N))
0