結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,416 KB
testcase_01 AC 94 ms
12,416 KB
testcase_02 AC 212 ms
13,568 KB
testcase_03 AC 115 ms
13,056 KB
testcase_04 AC 132 ms
13,184 KB
testcase_05 AC 140 ms
13,056 KB
testcase_06 AC 168 ms
13,312 KB
testcase_07 AC 151 ms
13,440 KB
testcase_08 AC 158 ms
13,312 KB
testcase_09 AC 142 ms
13,312 KB
testcase_10 AC 97 ms
12,288 KB
testcase_11 AC 121 ms
12,928 KB
testcase_12 AC 185 ms
13,440 KB
testcase_13 AC 138 ms
13,184 KB
testcase_14 AC 141 ms
13,440 KB
testcase_15 AC 173 ms
13,312 KB
testcase_16 AC 152 ms
13,184 KB
testcase_17 AC 185 ms
13,312 KB
testcase_18 AC 201 ms
13,568 KB
testcase_19 AC 184 ms
13,440 KB
testcase_20 AC 180 ms
13,440 KB
testcase_21 AC 110 ms
13,056 KB
testcase_22 AC 181 ms
13,440 KB
testcase_23 AC 183 ms
13,440 KB
testcase_24 AC 180 ms
13,696 KB
testcase_25 AC 156 ms
13,312 KB
testcase_26 AC 193 ms
13,568 KB
testcase_27 AC 173 ms
13,440 KB
testcase_28 AC 147 ms
13,184 KB
testcase_29 AC 200 ms
13,440 KB
testcase_30 AC 192 ms
13,440 KB
testcase_31 AC 182 ms
13,312 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).select{|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