結果

問題 No.7 プライムナンバーゲーム
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-06-02 12:43:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,209 ms / 5,000 ms
コード長 297 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 45,564 KB
最終ジャッジ日時 2024-10-01 15:33:07
合計ジャッジ時間 9,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 1,209 ms
45,564 KB
testcase_03 AC 160 ms
13,824 KB
testcase_04 AC 107 ms
12,800 KB
testcase_05 AC 108 ms
12,928 KB
testcase_06 AC 413 ms
23,552 KB
testcase_07 AC 310 ms
22,144 KB
testcase_08 AC 186 ms
15,232 KB
testcase_09 AC 579 ms
25,884 KB
testcase_10 AC 89 ms
12,032 KB
testcase_11 AC 315 ms
22,272 KB
testcase_12 AC 898 ms
28,272 KB
testcase_13 AC 935 ms
29,948 KB
testcase_14 AC 1,200 ms
45,176 KB
testcase_15 AC 1,170 ms
42,372 KB
testcase_16 AC 1,055 ms
38,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n =  gets.to_i

primes = (2..n).to_a
(2..Math.sqrt(n)).each do |i|
    primes.reject!{ |v| (v % i == 0) && (i != v) }
end

dp = Array.new(n + 1, false)
dp[0] = true
dp[1] = true

(2..n).each do |i|
    dp[i] = primes.reject{|j| j > i }.any?{|j| dp[i - j] == false}
end
puts dp[n] ? "Win" : "Lose"
0