結果

問題 No.6 使いものにならないハッシュ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-29 15:06:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 212 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-16 16:49:50
合計ジャッジ時間 6,271 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,416 KB
testcase_01 AC 98 ms
12,416 KB
testcase_02 AC 212 ms
13,440 KB
testcase_03 AC 114 ms
12,800 KB
testcase_04 AC 128 ms
13,056 KB
testcase_05 AC 140 ms
13,312 KB
testcase_06 AC 171 ms
13,568 KB
testcase_07 AC 151 ms
13,184 KB
testcase_08 AC 166 ms
13,184 KB
testcase_09 AC 144 ms
13,312 KB
testcase_10 AC 93 ms
12,416 KB
testcase_11 AC 116 ms
12,928 KB
testcase_12 AC 184 ms
13,696 KB
testcase_13 AC 138 ms
13,184 KB
testcase_14 AC 142 ms
13,312 KB
testcase_15 AC 174 ms
13,696 KB
testcase_16 AC 154 ms
13,184 KB
testcase_17 AC 181 ms
13,440 KB
testcase_18 AC 204 ms
13,696 KB
testcase_19 AC 182 ms
13,568 KB
testcase_20 AC 179 ms
13,312 KB
testcase_21 AC 110 ms
12,928 KB
testcase_22 AC 171 ms
13,440 KB
testcase_23 AC 181 ms
13,440 KB
testcase_24 AC 173 ms
13,440 KB
testcase_25 AC 156 ms
13,440 KB
testcase_26 AC 189 ms
13,568 KB
testcase_27 AC 170 ms
13,440 KB
testcase_28 AC 146 ms
13,184 KB
testcase_29 AC 196 ms
13,696 KB
testcase_30 AC 190 ms
13,568 KB
testcase_31 AC 183 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

def to_hash(x)
  x = x.digits.sum until x < 10
  x
end

k = gets.to_i
n = gets.to_i

primes = Prime.each(n).filter{|prime| k <= prime}.to_a

answers = Hash.new(-1)
primes.size.times do |x|
  hashes = []
  (x...primes.size).each do |y|
    hash = to_hash(primes[y])
    break if hashes.include?(hash)
    hashes << hash
  end
  answers[hashes.size] = [answers[hashes.size], x].max 
end

puts primes[answers[answers.keys.max]]
0