結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,784 KB
testcase_01 AC 14 ms
6,784 KB
testcase_02 AC 166 ms
11,428 KB
testcase_03 AC 38 ms
7,680 KB
testcase_04 AC 48 ms
8,320 KB
testcase_05 AC 58 ms
8,192 KB
testcase_06 AC 92 ms
9,856 KB
testcase_07 AC 60 ms
9,600 KB
testcase_08 AC 83 ms
9,856 KB
testcase_09 AC 51 ms
11,264 KB
testcase_10 RE -
testcase_11 AC 42 ms
7,672 KB
testcase_12 AC 114 ms
9,772 KB
testcase_13 AC 42 ms
11,008 KB
testcase_14 AC 50 ms
11,008 KB
testcase_15 AC 93 ms
9,472 KB
testcase_16 AC 69 ms
10,752 KB
testcase_17 AC 118 ms
11,264 KB
testcase_18 AC 156 ms
11,264 KB
testcase_19 AC 116 ms
11,136 KB
testcase_20 AC 105 ms
10,112 KB
testcase_21 AC 28 ms
7,424 KB
testcase_22 AC 110 ms
10,752 KB
testcase_23 AC 108 ms
9,856 KB
testcase_24 AC 107 ms
10,368 KB
testcase_25 AC 68 ms
9,856 KB
testcase_26 AC 129 ms
11,136 KB
testcase_27 AC 99 ms
10,752 KB
testcase_28 AC 72 ms
8,832 KB
testcase_29 AC 137 ms
11,136 KB
testcase_30 AC 125 ms
10,476 KB
testcase_31 AC 111 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import deque

def h(n):
    while n>9:
        n=reduce(lambda x,y:x+int(y),str(n),0)
    return n

def prime(max):
    max2 = (max-3)/2
    sieve = [True]*(max2+1)
    for i in range(int((math.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=reduce(lambda x,y:x+y,cnt)
    if max<=size:
        max=size
        ans=a[0][0]
print ans
0