結果

問題 No.6 使いものにならないハッシュ
ユーザー gigurururugigurururu
提出日時 2014-11-04 16:19:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 317 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-09-16 16:21:40
合計ジャッジ時間 6,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
12,160 KB
testcase_01 AC 101 ms
12,288 KB
testcase_02 AC 231 ms
14,080 KB
testcase_03 AC 124 ms
12,544 KB
testcase_04 AC 137 ms
12,544 KB
testcase_05 AC 147 ms
12,928 KB
testcase_06 AC 184 ms
13,440 KB
testcase_07 AC 160 ms
13,184 KB
testcase_08 AC 175 ms
13,312 KB
testcase_09 AC 149 ms
13,056 KB
testcase_10 AC 101 ms
12,416 KB
testcase_11 AC 128 ms
12,416 KB
testcase_12 AC 200 ms
13,568 KB
testcase_13 AC 146 ms
13,056 KB
testcase_14 AC 151 ms
13,056 KB
testcase_15 AC 187 ms
13,184 KB
testcase_16 AC 167 ms
13,440 KB
testcase_17 AC 199 ms
13,696 KB
testcase_18 AC 221 ms
14,080 KB
testcase_19 AC 196 ms
13,568 KB
testcase_20 AC 187 ms
13,440 KB
testcase_21 AC 114 ms
12,544 KB
testcase_22 AC 192 ms
13,312 KB
testcase_23 AC 193 ms
13,568 KB
testcase_24 AC 192 ms
13,440 KB
testcase_25 AC 167 ms
13,312 KB
testcase_26 AC 204 ms
13,824 KB
testcase_27 AC 185 ms
13,440 KB
testcase_28 AC 155 ms
12,928 KB
testcase_29 AC 210 ms
13,824 KB
testcase_30 AC 203 ms
13,440 KB
testcase_31 AC 193 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require"prime"
k=gets.to_i
n=gets.to_i
l=Prime.each(n).select{|i|i>=k}.map{|i|j=i;j=j.to_s.chars.inject(0){|s,c|s+c.to_i} while j>9;[i,j]}
a=[]
cnt=[0]*10
max=0
ans=0
l.each{|i,j|
  a<<[i,j]
  cnt[j]+=1
  cnt[a.shift[1]]-=1 while cnt[j]>1
  if max<=a.size
    max=a.size
    ans=a[0][0]
  end
}
p ans
0