結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | nishima |
提出日時 | 2015-11-07 23:36:30 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-09-13 14:05:39 |
合計ジャッジ時間 | 1,761 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
def game( n, k ) =begin n1 = n % ( k + 1 ) # n1 をいったら負け n1 = 0 ... 先手勝ち n1 = 1 ... 先手負け n1 = 2 ... 先手負け ( k >= 2 ) n1 > 3 # n1 - 1 を言えたら勝ち (n1-1) <= k ? "win" : "lose" =end n1 = n % ( k + 1 ) if n1 == 0 "win" elsif n1 == 1 || n1 == 2 "lose" else (n1-1) <= k ? "win" : "lose" end end p = $stdin.gets.chomp.to_i ans = [] 1.upto( p ){ question = $stdin.gets.chomp.split(/ /).map(&:to_i) ans << game( question[ 0 ], question[ 1 ] ) } ans.each{ |a| puts a }