結果

問題 No.6 使いものにならないハッシュ
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 13:43:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 216 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 17,076 KB
最終ジャッジ日時 2024-09-16 16:24:02
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,016 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 216 ms
17,076 KB
testcase_03 AC 43 ms
7,992 KB
testcase_04 AC 66 ms
10,108 KB
testcase_05 AC 68 ms
9,340 KB
testcase_06 AC 127 ms
13,772 KB
testcase_07 AC 103 ms
13,140 KB
testcase_08 AC 121 ms
14,036 KB
testcase_09 AC 122 ms
16,888 KB
testcase_10 AC 10 ms
6,144 KB
testcase_11 AC 46 ms
8,088 KB
testcase_12 AC 143 ms
13,544 KB
testcase_13 AC 109 ms
15,856 KB
testcase_14 AC 114 ms
16,212 KB
testcase_15 AC 120 ms
12,632 KB
testcase_16 AC 129 ms
15,844 KB
testcase_17 AC 180 ms
16,932 KB
testcase_18 AC 199 ms
17,040 KB
testcase_19 AC 167 ms
16,484 KB
testcase_20 AC 143 ms
14,500 KB
testcase_21 AC 29 ms
7,000 KB
testcase_22 AC 158 ms
15,884 KB
testcase_23 AC 140 ms
13,792 KB
testcase_24 AC 153 ms
14,892 KB
testcase_25 AC 112 ms
13,168 KB
testcase_26 AC 174 ms
16,480 KB
testcase_27 AC 151 ms
15,736 KB
testcase_28 AC 93 ms
11,336 KB
testcase_29 AC 189 ms
16,492 KB
testcase_30 AC 161 ms
14,824 KB
testcase_31 AC 149 ms
14,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(raw_input())
N=int(raw_input())
isPrime=[True for i in range(N+1)]
isPrime[0]=False
isPrime[1]=False
primes=[]
for i in range(N+1):
   if isPrime[i]:
      for j in range(i+i,N+1,i):
         isPrime[j]=False
      if i>=K and i <=N:
         primes.append(i)
hashs=[]
for p in primes:
   while p>=10:
      q = 0
      while p!=0:
         q+=p%10
         p/=10
      p=q
   hashs.append(p)

maxLen=0
ans = 2
for i in range(len(primes)):
   isUsed=[False for k in range(10)]
   curLen=0
   j = i
   while j<len(primes) and isUsed[hashs[j]]== False:
      isUsed[hashs[j]]=True
      curLen+=1
      j+=1
   if maxLen <= curLen:
      maxLen = curLen
      ans = primes[i]
print ans
0