結果

問題 No.7 プライムナンバーゲーム
ユーザー maimai
提出日時 2017-02-04 10:55:34
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 512 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-06 14:10:33
合計ジャッジ時間 9,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
12,672 KB
testcase_01 AC 96 ms
12,416 KB
testcase_02 RE -
testcase_03 AC 1,477 ms
14,080 KB
testcase_04 AC 442 ms
13,312 KB
testcase_05 AC 423 ms
13,184 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

# 素数列挙
prime_generator = Prime::EratosthenesGenerator.new
@primes = []
begin ; @primes << prime_generator.next ; end while @primes[-1]<10000

# dfs(num,you?) you?は勝つか?
@memo={}
def dfs(n,turn=true)
    return turn if n <= 1
    return @memo[[n,turn]] if @memo.key?([n,turn])
    res = !turn;
    @primes.each{|k|
        break if n-k<0
        a=dfs(n-k,!turn)
        res=((res^a)&turn)|(res&a)
    }
    return @memo[[n,turn]]=res
end

puts dfs(gets.to_i) ? "Win" : "Lose"

0