結果

問題 No.7 プライムナンバーゲーム
ユーザー DialBirdDialBird
提出日時 2016-11-13 19:50:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,016 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 56,704 KB
最終ジャッジ日時 2024-10-01 15:50:31
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,160 KB
testcase_01 AC 100 ms
12,544 KB
testcase_02 AC 1,016 ms
56,704 KB
testcase_03 AC 145 ms
18,176 KB
testcase_04 AC 100 ms
13,824 KB
testcase_05 AC 101 ms
13,696 KB
testcase_06 AC 358 ms
33,664 KB
testcase_07 AC 274 ms
29,056 KB
testcase_08 AC 166 ms
20,480 KB
testcase_09 AC 499 ms
36,480 KB
testcase_10 AC 84 ms
12,288 KB
testcase_11 AC 271 ms
29,440 KB
testcase_12 AC 805 ms
44,672 KB
testcase_13 AC 785 ms
48,512 KB
testcase_14 AC 1,003 ms
56,576 KB
testcase_15 AC 970 ms
55,424 KB
testcase_16 AC 907 ms
53,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:28: warning: assigned but unused variable - ans
Syntax OK

ソースコード

diff #

require 'prime'

MAX_N = 10000

def prime_nums(n)
  arr = []
  Prime.each(n) { |p| arr << p }
  arr
end

def main
  n = gets.to_i
  dp = [false]*(MAX_N + 1)
  prime_arr = prime_nums(n)

  2.upto(n) do |i|
    res = true
    use_primes = prime_arr.select{ |p| p < i }
    use_primes.each do |p|
      if dp[i - p]
        res = false
        break
      end
    end
    dp[i] = res
  end

  ans = dp[n] ? 'Lose' : 'Win'
end

puts main()
0