結果

問題 No.7 プライムナンバーゲーム
ユーザー gigurururugigurururu
提出日時 2014-11-05 20:32:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-10-01 15:27:31
合計ジャッジ時間 3,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,544 KB
testcase_01 AC 86 ms
12,672 KB
testcase_02 AC 209 ms
12,544 KB
testcase_03 AC 113 ms
12,544 KB
testcase_04 AC 97 ms
12,672 KB
testcase_05 AC 95 ms
12,544 KB
testcase_06 AC 140 ms
12,416 KB
testcase_07 AC 127 ms
12,672 KB
testcase_08 AC 111 ms
12,416 KB
testcase_09 AC 157 ms
12,544 KB
testcase_10 AC 86 ms
12,544 KB
testcase_11 AC 132 ms
12,672 KB
testcase_12 AC 191 ms
12,416 KB
testcase_13 AC 192 ms
12,416 KB
testcase_14 AC 211 ms
12,544 KB
testcase_15 AC 209 ms
12,672 KB
testcase_16 AC 197 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require"prime"
prime=[*Prime.each(10000)]
w=[false]*4
n=gets.to_i
(2..n).each{|c|
  prime.each{|i|i+c<=n&&w[i+c]=true}if !w[c]
}
puts w[n]?"Win":"Lose"
0