結果

問題 No.8 N言っちゃダメゲーム
ユーザー tentententen
提出日時 2020-11-17 08:22:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-23 01:54:52
合計ジャッジ時間 4,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,944 KB
testcase_01 AC 136 ms
54,040 KB
testcase_02 AC 136 ms
53,856 KB
testcase_03 AC 154 ms
53,928 KB
testcase_04 AC 155 ms
54,076 KB
testcase_05 AC 156 ms
54,116 KB
testcase_06 AC 155 ms
54,052 KB
testcase_07 AC 154 ms
54,232 KB
testcase_08 AC 155 ms
54,340 KB
testcase_09 AC 157 ms
54,060 KB
testcase_10 AC 154 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() % (sc.nextInt() + 1) == 1) {
                sb.append("Lose\n");
            } else {
                sb.append("Win\n");
            }
        }
        System.out.print(sb);
    }
}
0