結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | DialBird |
提出日時 | 2016-11-14 10:14:58 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 296 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 24,832 KB |
最終ジャッジ日時 | 2024-11-25 22:14:05 |
合計ジャッジ時間 | 15,514 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
24,832 KB |
testcase_01 | AC | 99 ms
12,288 KB |
testcase_02 | AC | 99 ms
12,416 KB |
testcase_03 | AC | 97 ms
12,544 KB |
testcase_04 | AC | 92 ms
12,544 KB |
testcase_05 | AC | 108 ms
12,672 KB |
testcase_06 | AC | 92 ms
12,544 KB |
testcase_07 | AC | 91 ms
12,288 KB |
testcase_08 | AC | 90 ms
12,416 KB |
testcase_09 | AC | 206 ms
12,672 KB |
testcase_10 | AC | 91 ms
12,416 KB |
testcase_11 | AC | 91 ms
12,416 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 91 ms
12,416 KB |
testcase_14 | AC | 273 ms
12,544 KB |
testcase_15 | AC | 271 ms
12,672 KB |
testcase_16 | TLE | - |
コンパイルメッセージ
Main.rb:18: warning: assigned but unused variable - ans Syntax OK
ソースコード
require 'prime' MAX_N = 10000 @dp = [nil]*(MAX_N + 1) def check(n) n.downto(2) do |i| next if !i.prime? next if [0,1].include?(n-i) return @dp[n] = true if !check(n-i) end return @dp[n] = false end def main n = gets.to_i ans = check(n) ? "Win" : "Lose" end puts main()