結果

問題 No.6 使いものにならないハッシュ
ユーザー pluto77pluto77
提出日時 2016-08-17 10:12:59
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-07 18:45:44
合計ジャッジ時間 12,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,144 KB
testcase_01 AC 12 ms
6,272 KB
testcase_02 AC 785 ms
7,296 KB
testcase_03 AC 79 ms
6,272 KB
testcase_04 AC 142 ms
6,400 KB
testcase_05 WA -
testcase_06 AC 397 ms
6,784 KB
testcase_07 AC 226 ms
6,528 KB
testcase_08 AC 349 ms
6,528 KB
testcase_09 AC 143 ms
6,400 KB
testcase_10 WA -
testcase_11 AC 86 ms
6,528 KB
testcase_12 AC 460 ms
6,912 KB
testcase_13 AC 83 ms
6,400 KB
testcase_14 AC 143 ms
6,400 KB
testcase_15 AC 365 ms
6,784 KB
testcase_16 AC 283 ms
6,528 KB
testcase_17 AC 601 ms
6,784 KB
testcase_18 AC 753 ms
7,168 KB
testcase_19 AC 575 ms
6,656 KB
testcase_20 AC 474 ms
6,784 KB
testcase_21 AC 47 ms
6,272 KB
testcase_22 AC 534 ms
6,784 KB
testcase_23 AC 452 ms
6,784 KB
testcase_24 AC 493 ms
6,784 KB
testcase_25 AC 263 ms
6,528 KB
testcase_26 AC 633 ms
6,912 KB
testcase_27 AC 472 ms
6,784 KB
testcase_28 AC 250 ms
6,528 KB
testcase_29 AC 666 ms
7,040 KB
testcase_30 WA -
testcase_31 AC 510 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki_6

def is_prime(n):
 i=2
 while i*i<=n:
  if n%i==0:
   return False
  i+=1
 return True
 
def fhash(n):
 v=n
 while v>=10:
  v=v/10+v%10
 return v

k=int(raw_input())
n=int(raw_input())

if k==1 or k==2: k=3
p=[]
h=[]

for i in xrange(k,n+1):
 if is_prime(i):
  p.append(i)
  h.append(fhash(i))

res=0
maxl=0
for i in xrange(len(p)):
 ref=[False]*10
 for j in xrange(i,len(p)):
  if ref[h[j]]: break
  ref[h[j]]=True
 if maxl<=j-i:
  maxl=j-i
  res=p[i]
  
print res
0