結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | fine |
提出日時 | 2016-03-23 00:30:49 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 43 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-10-01 15:18:54 |
合計ジャッジ時間 | 3,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 92 ms
12,544 KB |
testcase_01 | WA | - |
testcase_02 | AC | 97 ms
12,544 KB |
testcase_03 | AC | 109 ms
13,440 KB |
testcase_04 | AC | 96 ms
12,288 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 97 ms
12,416 KB |
testcase_08 | AC | 92 ms
12,288 KB |
testcase_09 | AC | 198 ms
18,816 KB |
testcase_10 | AC | 90 ms
12,288 KB |
testcase_11 | AC | 93 ms
12,288 KB |
testcase_12 | WA | - |
testcase_13 | AC | 97 ms
12,416 KB |
testcase_14 | AC | 316 ms
26,752 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
require 'prime' def sol n,f,memo if memo[n - 2] != nil return memo[n - 2] end if n < 2 memo[n - 2] = f return f elsif n < 4 memo[n - 2] = !f return !f end Prime.each(n).to_a.reverse.each{|x| if f if sol(n - x,false,memo) memo[n - 2] = true return true end else if !sol(n - x,true,memo) memo[n - 2] = false return false end end } memo[n - 2] = false return !f end n = gets.to_i memo = Array.new(n - 2) if sol(n,true,memo) puts 'Win' else puts 'Lose' end