結果

問題 No.6 使いものにならないハッシュ
ユーザー letrangerjpletrangerjp
提出日時 2017-05-14 14:09:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-16 16:38:50
合計ジャッジ時間 5,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,416 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 149 ms
13,312 KB
testcase_03 AC 102 ms
12,672 KB
testcase_04 AC 116 ms
12,544 KB
testcase_05 AC 114 ms
12,800 KB
testcase_06 AC 132 ms
12,928 KB
testcase_07 AC 126 ms
12,928 KB
testcase_08 AC 131 ms
12,928 KB
testcase_09 AC 125 ms
13,184 KB
testcase_10 AC 88 ms
12,288 KB
testcase_11 AC 100 ms
12,800 KB
testcase_12 AC 132 ms
12,928 KB
testcase_13 AC 123 ms
13,056 KB
testcase_14 AC 123 ms
13,184 KB
testcase_15 AC 134 ms
12,928 KB
testcase_16 AC 132 ms
12,928 KB
testcase_17 AC 135 ms
13,184 KB
testcase_18 AC 146 ms
13,184 KB
testcase_19 AC 137 ms
12,928 KB
testcase_20 AC 136 ms
13,184 KB
testcase_21 AC 95 ms
12,800 KB
testcase_22 AC 136 ms
13,184 KB
testcase_23 AC 135 ms
12,928 KB
testcase_24 AC 132 ms
12,800 KB
testcase_25 AC 138 ms
13,184 KB
testcase_26 AC 150 ms
13,056 KB
testcase_27 AC 133 ms
12,928 KB
testcase_28 AC 113 ms
12,544 KB
testcase_29 AC 141 ms
13,184 KB
testcase_30 AC 137 ms
12,928 KB
testcase_31 AC 135 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