結果

問題 No.8 N言っちゃダメゲーム
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-24 11:11:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-06-01 05:23:41
合計ジャッジ時間 4,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,232 KB
testcase_01 AC 133 ms
41,220 KB
testcase_02 AC 146 ms
41,304 KB
testcase_03 AC 168 ms
41,816 KB
testcase_04 AC 165 ms
41,544 KB
testcase_05 AC 183 ms
41,624 KB
testcase_06 AC 176 ms
41,640 KB
testcase_07 AC 173 ms
41,256 KB
testcase_08 AC 171 ms
41,432 KB
testcase_09 AC 167 ms
41,688 KB
testcase_10 AC 167 ms
41,788 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