結果

問題 No.6 使いものにならないハッシュ
ユーザー letrangerjpletrangerjp
提出日時 2017-05-14 14:09:07
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-16 05:48:58
合計ジャッジ時間 6,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 106 ms
12,288 KB
testcase_02 AC 166 ms
13,184 KB
testcase_03 AC 123 ms
12,672 KB
testcase_04 AC 128 ms
12,672 KB
testcase_05 WA -
testcase_06 AC 153 ms
12,928 KB
testcase_07 AC 146 ms
13,056 KB
testcase_08 WA -
testcase_09 AC 142 ms
12,928 KB
testcase_10 AC 101 ms
12,032 KB
testcase_11 AC 115 ms
12,288 KB
testcase_12 AC 156 ms
13,056 KB
testcase_13 AC 140 ms
12,928 KB
testcase_14 AC 143 ms
13,056 KB
testcase_15 AC 153 ms
12,928 KB
testcase_16 AC 149 ms
12,928 KB
testcase_17 AC 160 ms
12,800 KB
testcase_18 AC 165 ms
13,056 KB
testcase_19 AC 156 ms
13,056 KB
testcase_20 AC 154 ms
12,928 KB
testcase_21 AC 112 ms
12,288 KB
testcase_22 AC 154 ms
13,056 KB
testcase_23 AC 156 ms
12,928 KB
testcase_24 AC 157 ms
12,928 KB
testcase_25 AC 146 ms
12,800 KB
testcase_26 WA -
testcase_27 AC 154 ms
13,056 KB
testcase_28 AC 129 ms
12,544 KB
testcase_29 AC 161 ms
12,800 KB
testcase_30 WA -
testcase_31 AC 154 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

def h(n)
  # while n > 10
  #   n = n.to_s.chars.map(&:to_i).inject(0,:+)
  # end
  # n
  while n > 10
    r = 0
    while n > 0
      n, m = n.divmod(10)
      r += m
    end
    n = r
  end
  n
end

def f(k, n)
  primes = Prime.each(n).drop_while{|n| n < k}

  last = -1
  max = 0
  r = []
  primes.each_with_index{|_v,i|
    break if i + max > primes.size

    v = h(_v)
    idx = r.index(v)
    r.shift(idx+1) if idx
    r << v
    max = [max, r.size].max
    last = i if r.size >= max
  }
  primes[last-max+1]
end


K = gets.to_i
N = gets.to_i
p f(K, N)
0