結果

問題 No.7 プライムナンバーゲーム
ユーザー letrangerjpletrangerjp
提出日時 2017-05-13 07:46:11
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-15 11:52:33
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,544 KB
testcase_01 AC 98 ms
12,288 KB
testcase_02 AC 101 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 101 ms
12,288 KB
testcase_05 AC 102 ms
12,288 KB
testcase_06 WA -
testcase_07 AC 101 ms
12,160 KB
testcase_08 WA -
testcase_09 AC 99 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 100 ms
12,288 KB
testcase_13 AC 100 ms
12,160 KB
testcase_14 AC 101 ms
12,544 KB
testcase_15 WA -
testcase_16 AC 103 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

def f(n)
  g = lambda{|n, initiative|
    return initiative if (n - 2).prime?
    return initiative if (n - 3).prime?
    g.(n-2, !initiative)
  }
  g.(n, true)
end

N = gets.to_i
puts f(N) ? :Win : :Lose
0