結果

問題 No.6 使いものにならないハッシュ
ユーザー gahougahou
提出日時 2016-11-11 16:51:55
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-05-04 02:09:10
合計ジャッジ時間 1,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,016 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 12 ms
6,272 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def isPrime(n,lst):
  for i in xrange(len(lst)):
    if n%lst[i]==0: return False
    if n<=lst[i]**2: return True

def primes():
  lst=[2]
  n=3
  while True:
    if n > 10**3: break
    if isPrime(n,lst):
      lst.append(n)
    n+=2
  return lst

def hashnize(n):
  k=n
  while k>9:
    k=sum(map(int,list(str(k))))
  return k

def hashPrime(lst):
  newLst=[]
  for i in lst:
    newLst.append(hashnize(i))
  return newLst

K=int(raw_input())
N=int(raw_input())
ps=[]
p=primes()
for i in p:
  if K<=i and i<=N:
    ps.append(i)
  if N<i: break
hashP = hashPrime(ps)
dic={}
maxLength=0
maxA=-1
a=0
b=0
while True:
  # print "%d,%d" % (a,b)
  # print dic
  if b==len(hashP):
    if maxLength<=b-a+1:
      maxA=a
    break
  if hashP[b] in dic:
    if maxLength<=b-a:
      maxA=a
      maxLength=b-a
    while hashP[b] in dic:
      del dic[hashP[a]]
      a+=1
    dic[hashP[b]] = True
    b+=1
  else:
    dic[hashP[b]] = True
    b+=1
print ps[maxA]
0