結果

問題 No.6 使いものにならないハッシュ
ユーザー gigurururugigurururu
提出日時 2014-11-04 20:24:54
言語 Python2
(2.7.18)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 751 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 11,420 KB
最終ジャッジ日時 2024-09-16 16:21:54
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,784 KB
testcase_01 AC 13 ms
6,784 KB
testcase_02 AC 135 ms
11,420 KB
testcase_03 AC 33 ms
7,552 KB
testcase_04 AC 42 ms
8,320 KB
testcase_05 AC 50 ms
8,064 KB
testcase_06 AC 79 ms
9,728 KB
testcase_07 AC 53 ms
9,600 KB
testcase_08 AC 71 ms
9,984 KB
testcase_09 AC 48 ms
11,264 KB
testcase_10 RE -
testcase_11 AC 37 ms
7,412 KB
testcase_12 AC 94 ms
9,892 KB
testcase_13 AC 40 ms
10,752 KB
testcase_14 AC 46 ms
10,880 KB
testcase_15 AC 78 ms
9,472 KB
testcase_16 AC 62 ms
10,880 KB
testcase_17 AC 100 ms
11,392 KB
testcase_18 AC 129 ms
11,264 KB
testcase_19 AC 98 ms
11,008 KB
testcase_20 AC 89 ms
10,112 KB
testcase_21 AC 25 ms
7,296 KB
testcase_22 AC 94 ms
10,624 KB
testcase_23 AC 91 ms
9,856 KB
testcase_24 AC 91 ms
10,368 KB
testcase_25 AC 59 ms
9,728 KB
testcase_26 AC 108 ms
11,136 KB
testcase_27 AC 83 ms
10,752 KB
testcase_28 AC 60 ms
8,832 KB
testcase_29 AC 113 ms
11,136 KB
testcase_30 AC 104 ms
10,368 KB
testcase_31 AC 93 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from collections import deque

def h(n):
    while n>9:
        n=sum(map(int,str(n)))
    return n

def prime(max):
    max2 = (max-3)/2
    sieve = [True]*(max2+1)
    for i in range(int((sqrt(max)-3)/2)+1):
        if not sieve[i]: continue
        k = i+i+3
        j = k*(i+1)+i
        while j <= max2:
            sieve[j] = False
            j += k
    sieve = [2]+[i+i+3 for i in range(max2+1) if sieve[i]]
    return sieve

k=input()
n=input()
a=deque()
cnt=[0]*10
max=0
ans=0
for i,j in [(i,h(i)) for i in prime(n) if i>=k]:
    a.append((i,j))
    cnt[j]+=1
    while cnt[j]>1:cnt[a.popleft()[1]]-=1
    size=sum(cnt)
    if max<=size:
        max=size
        ans=a[0][0]
print ans
0