結果

問題 No.8 N言っちゃダメゲーム
ユーザー mos_13184925mos_13184925
提出日時 2018-07-08 18:57:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 515 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-07-08 00:32:37
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,280 KB
testcase_01 AC 135 ms
41,520 KB
testcase_02 AC 134 ms
41,028 KB
testcase_03 AC 156 ms
41,236 KB
testcase_04 AC 164 ms
41,564 KB
testcase_05 AC 167 ms
41,520 KB
testcase_06 AC 166 ms
41,888 KB
testcase_07 AC 155 ms
41,432 KB
testcase_08 AC 165 ms
41,324 KB
testcase_09 AC 160 ms
41,760 KB
testcase_10 AC 156 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int p = sc.nextInt();
        int[] n = new int[p];
        int[] k = new int[p];
        for(int i = 0; i < p; i++){
            n[i] = sc.nextInt();
            k[i] = sc.nextInt();
        }
        for(int i = 0; i < p; i++){
            String ans = "Win";
            if((n[i] - 1) % (k[i] + 1) == 0) ans = "Lose";
            System.out.println(ans);
        }
    }
}
0