結果

問題 No.7 プライムナンバーゲーム
ユーザー zazaboonzazaboon
提出日時 2017-05-08 15:02:03
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-14 17:22:57
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
12,544 KB
testcase_01 WA -
testcase_02 AC 337 ms
12,800 KB
testcase_03 AC 123 ms
12,672 KB
testcase_04 AC 113 ms
12,544 KB
testcase_05 WA -
testcase_06 AC 178 ms
12,544 KB
testcase_07 AC 155 ms
12,800 KB
testcase_08 AC 129 ms
12,672 KB
testcase_09 WA -
testcase_10 AC 108 ms
12,672 KB
testcase_11 AC 156 ms
12,416 KB
testcase_12 AC 273 ms
12,672 KB
testcase_13 AC 283 ms
12,544 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 312 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"
ss = Prime.each(10000).to_a
ans = Array.new(10001)
n=gets.to_i
(n+1).times do |d|
    if(d < 2)
        ans[d] = true
    elsif(d<4)
        ans[d] = false
    else
        f=0
        ss.each do |pr|
            break if(pr > d)
            if(ans[d-pr] == false)
                ans[d] = true
                f=1
                break 
            end
        end
        ans[d]=false unless(f==1)
    end
end
puts ans[n]? "Win" : "Loss"
0