結果

問題 No.6 使いものにならないハッシュ
ユーザー warashiwarashi
提出日時 2015-02-13 00:57:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 429 ms / 5,000 ms
コード長 1,181 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-16 16:24:22
合計ジャッジ時間 5,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 429 ms
12,672 KB
testcase_03 AC 47 ms
11,008 KB
testcase_04 AC 60 ms
11,136 KB
testcase_05 AC 81 ms
11,136 KB
testcase_06 AC 149 ms
12,288 KB
testcase_07 AC 82 ms
11,648 KB
testcase_08 AC 120 ms
11,776 KB
testcase_09 AC 73 ms
12,160 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 51 ms
11,008 KB
testcase_12 AC 223 ms
12,160 KB
testcase_13 AC 64 ms
12,160 KB
testcase_14 AC 71 ms
12,160 KB
testcase_15 AC 151 ms
11,904 KB
testcase_16 AC 93 ms
12,032 KB
testcase_17 AC 213 ms
12,544 KB
testcase_18 AC 381 ms
12,928 KB
testcase_19 AC 211 ms
12,416 KB
testcase_20 AC 189 ms
12,032 KB
testcase_21 AC 37 ms
10,752 KB
testcase_22 AC 188 ms
12,416 KB
testcase_23 AC 194 ms
12,160 KB
testcase_24 AC 186 ms
12,160 KB
testcase_25 AC 91 ms
12,032 KB
testcase_26 AC 255 ms
12,544 KB
testcase_27 AC 155 ms
12,288 KB
testcase_28 AC 102 ms
11,392 KB
testcase_29 AC 288 ms
12,416 KB
testcase_30 AC 264 ms
12,160 KB
testcase_31 AC 204 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from itertools import dropwhile


def sqrt_floor(n):
    l = 5 * n
    r = 5
    sqrt = 0
    while l > r:
        sqrt += 1
        l = l - r
        r += 10
    return sqrt


def sieve_of_eratosthenes(max):
    is_prime = [True] * (max + 1)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, sqrt_floor(max) + 1):
        if not is_prime[i]:
            continue
        for j in range(i * i, max + 1, i):
            is_prime[j] = False
    return filter(lambda x: is_prime[x], range(max + 1))


def digital_root(n):
    if n == 0:
        return 0
    if n % 9 == 0:
        return 9
    return n % 9


def length(digitals, start_index):
    appeared = []
    count = 0
    for i in digitals[start_index:]:
        if i in appeared:
            break
        appeared.append(i)
        count += 1
    return count

K = int(input())
N = int(input())
primes = tuple(dropwhile(lambda x: x < K, sieve_of_eratosthenes(N)))
digitals = tuple(map(digital_root, primes))
maxlength = 0
index = 0
for i in range(len(digitals)):
    tmp = length(digitals, i)
    if tmp >= maxlength:
        maxlength = tmp
        index = i
print(primes[index])
0