結果

問題 No.8 N言っちゃダメゲーム
ユーザー shoheishohei
提出日時 2014-12-12 22:40:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-06-11 21:02:11
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,480 KB
testcase_01 AC 114 ms
41,444 KB
testcase_02 AC 113 ms
41,516 KB
testcase_03 AC 135 ms
41,656 KB
testcase_04 AC 141 ms
41,700 KB
testcase_05 AC 151 ms
41,636 KB
testcase_06 AC 157 ms
41,768 KB
testcase_07 AC 155 ms
41,644 KB
testcase_08 AC 135 ms
41,676 KB
testcase_09 AC 135 ms
41,620 KB
testcase_10 AC 135 ms
41,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main08 {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int p = sc.nextInt();
        int n, k;

        for(int i = 0; i < p; i++){
            n = sc.nextInt();
            k = sc.nextInt();
            
            if((n-1) % (k+1) == 0)
                    System.out.println("Lose");
            else
                    System.out.println("Win");
        }
    }
}
0