結果

問題 No.6 使いものにならないハッシュ
ユーザー nsd_fbnsd_fb
提出日時 2015-02-19 04:08:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 744 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-09-16 16:24:26
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 134 ms
8,448 KB
testcase_03 AC 28 ms
6,656 KB
testcase_04 AC 39 ms
6,912 KB
testcase_05 AC 45 ms
6,912 KB
testcase_06 AC 78 ms
7,552 KB
testcase_07 AC 55 ms
7,424 KB
testcase_08 AC 71 ms
7,424 KB
testcase_09 AC 56 ms
7,808 KB
testcase_10 AC 11 ms
6,144 KB
testcase_11 AC 32 ms
6,400 KB
testcase_12 AC 98 ms
7,552 KB
testcase_13 AC 46 ms
7,680 KB
testcase_14 AC 53 ms
7,552 KB
testcase_15 AC 80 ms
7,296 KB
testcase_16 AC 66 ms
7,808 KB
testcase_17 AC 100 ms
8,192 KB
testcase_18 AC 134 ms
8,320 KB
testcase_19 AC 100 ms
8,064 KB
testcase_20 AC 90 ms
7,808 KB
testcase_21 AC 23 ms
6,400 KB
testcase_22 AC 91 ms
7,680 KB
testcase_23 AC 88 ms
7,680 KB
testcase_24 AC 89 ms
7,808 KB
testcase_25 AC 61 ms
7,296 KB
testcase_26 AC 111 ms
8,192 KB
testcase_27 AC 85 ms
7,936 KB
testcase_28 AC 58 ms
7,168 KB
testcase_29 AC 115 ms
8,192 KB
testcase_30 AC 104 ms
7,808 KB
testcase_31 AC 93 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(k, n):
    res = []
    is_prime = [True] * (n + 1)
    
    for i in xrange(2, n + 1):
        if is_prime[i]:
            if i >= k:
                res.append(i)

            for j in xrange(i * i, n + 1, i):
                is_prime[j] = False

    return res

def frank_hash(n):
    if n < 10:
        return n

    return frank_hash(sum(map(int, str(n))))

k = input()
n = input()

primes = sieve(k, n)
hashes = map(frank_hash, primes)

exists = [False] * 10

max_length = -1
ans = -1

l = 0
for r in xrange(len(primes)):
    while exists[hashes[r]]:
        exists[hashes[l]] = False
        l += 1

    exists[hashes[r]] = True
    if max_length <= r - l + 1:
        max_length = r - l + 1
        ans = primes[l]

print ans
0