結果

問題 No.8 N言っちゃダメゲーム
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-03 12:16:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 50,436 KB
最終ジャッジ日時 2024-07-18 01:05:57
合計ジャッジ時間 3,404 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,304 KB
testcase_01 AC 48 ms
50,280 KB
testcase_02 AC 51 ms
50,308 KB
testcase_03 AC 53 ms
50,036 KB
testcase_04 AC 55 ms
50,044 KB
testcase_05 AC 53 ms
50,176 KB
testcase_06 AC 58 ms
50,336 KB
testcase_07 AC 54 ms
50,344 KB
testcase_08 AC 54 ms
49,928 KB
testcase_09 AC 53 ms
50,296 KB
testcase_10 AC 53 ms
50,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int P = Integer.parseInt(br.readLine());

        for (int i = 0; i < P; i++) {

            String[] strs = br.readLine().split(" ");

            int N = Integer.parseInt(strs[0]);
            int K = Integer.parseInt(strs[1]);

            int tmp = N % (K + 1);

            if (tmp != 1) {
                System.out.println("Win");
            } else {
                System.out.println("Lose");
            }
        }
    }
}
0