結果

問題 No.7 プライムナンバーゲーム
ユーザー %20%20
提出日時 2017-05-13 16:58:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,031 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-10-01 16:04:32
合計ジャッジ時間 9,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
12,672 KB
testcase_01 AC 104 ms
12,672 KB
testcase_02 AC 1,017 ms
12,672 KB
testcase_03 AC 218 ms
12,672 KB
testcase_04 AC 143 ms
12,672 KB
testcase_05 AC 144 ms
12,416 KB
testcase_06 AC 467 ms
12,800 KB
testcase_07 AC 372 ms
12,672 KB
testcase_08 AC 251 ms
12,544 KB
testcase_09 AC 591 ms
12,672 KB
testcase_10 AC 91 ms
12,416 KB
testcase_11 AC 375 ms
12,544 KB
testcase_12 AC 805 ms
12,544 KB
testcase_13 AC 848 ms
12,800 KB
testcase_14 AC 1,031 ms
12,544 KB
testcase_15 AC 972 ms
12,416 KB
testcase_16 AC 922 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -nrprime
l=[]
2.upto($_.to_i){|i|l[i]=!Prime.each(1e4).any?{|p|l[-p]}}
puts l[-1]?:Lose: :Win
0