結果

問題 No.6 使いものにならないハッシュ
ユーザー roiti46roiti46
提出日時 2015-02-16 23:23:58
言語 Python2
(2.7.18)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 649 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,756 KB
最終ジャッジ日時 2024-09-16 16:24:14
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
9,504 KB
testcase_01 AC 37 ms
9,500 KB
testcase_02 AC 140 ms
9,500 KB
testcase_03 AC 52 ms
9,372 KB
testcase_04 AC 55 ms
9,628 KB
testcase_05 AC 69 ms
9,504 KB
testcase_06 AC 88 ms
9,272 KB
testcase_07 AC 61 ms
9,376 KB
testcase_08 AC 79 ms
9,628 KB
testcase_09 AC 47 ms
9,500 KB
testcase_10 RE -
testcase_11 AC 54 ms
9,376 KB
testcase_12 AC 110 ms
9,424 KB
testcase_13 AC 44 ms
9,244 KB
testcase_14 AC 48 ms
9,504 KB
testcase_15 AC 91 ms
9,376 KB
testcase_16 AC 65 ms
9,376 KB
testcase_17 AC 106 ms
9,500 KB
testcase_18 AC 137 ms
9,504 KB
testcase_19 AC 106 ms
9,504 KB
testcase_20 AC 101 ms
9,500 KB
testcase_21 AC 47 ms
9,248 KB
testcase_22 AC 107 ms
9,376 KB
testcase_23 AC 102 ms
9,376 KB
testcase_24 AC 97 ms
9,376 KB
testcase_25 AC 69 ms
9,504 KB
testcase_26 AC 115 ms
9,412 KB
testcase_27 AC 91 ms
9,372 KB
testcase_28 AC 76 ms
9,244 KB
testcase_29 AC 122 ms
9,488 KB
testcase_30 AC 114 ms
9,372 KB
testcase_31 AC 108 ms
9,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
R = 200001
p = [1]*R
p[0] = p[1] = 0
for i in xrange(2,int(R**0.5)):
    if p[i]: p[2*i::i] = [0]*(len(p[2*i::i]))
p = [i for i in xrange(2,R) if p[i]]
    
K = int(raw_input())
N = int(raw_input())
ans = mx = 0
H = []
for i in xrange(bisect(p,K),bisect(p,N)):
    s = str(p[i])
    while len(s) > 1:
        s = str(sum(map(int,list(s))))
    if s in H:
        if   len(H)  > mx: mx,ans = len(H),p[i-len(H)]
        elif len(H) == mx: ans = max(ans, p[i-len(H)])
    while s in H:
        H.pop(0)
    H.append(s)
else:
    if   len(H)  > mx: ans = p[i+1-len(H)]
    elif len(H) == mx: ans = max(ans, p[i+1-len(H)])
print ans
0