結果

問題 No.8 N言っちゃダメゲーム
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-24 11:11:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 42,052 KB
最終ジャッジ日時 2024-12-21 08:28:01
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,100 KB
testcase_01 AC 125 ms
39,972 KB
testcase_02 AC 120 ms
41,432 KB
testcase_03 AC 161 ms
41,368 KB
testcase_04 AC 147 ms
41,704 KB
testcase_05 AC 152 ms
41,848 KB
testcase_06 AC 147 ms
42,052 KB
testcase_07 AC 146 ms
41,576 KB
testcase_08 AC 144 ms
41,524 KB
testcase_09 AC 148 ms
41,648 KB
testcase_10 AC 148 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        
        int p = stdin.nextInt();
        for (int time = 0; time < p; time++) {
            int n = stdin.nextInt();
            int k = stdin.nextInt();
            String answer = (n - 1) % (k + 1) == 0 ? "Lose" : "Win";
            System.out.println(answer);
        }
    }

}
0