結果

問題 No.8 N言っちゃダメゲーム
ユーザー SagTokiSagToki
提出日時 2018-05-21 16:35:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 794 bytes
コンパイル時間 3,928 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-06-28 15:00:58
合計ジャッジ時間 6,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,888 KB
testcase_01 AC 131 ms
41,356 KB
testcase_02 AC 130 ms
41,268 KB
testcase_03 AC 158 ms
41,580 KB
testcase_04 AC 167 ms
41,512 KB
testcase_05 AC 156 ms
41,648 KB
testcase_06 AC 154 ms
41,436 KB
testcase_07 AC 159 ms
41,464 KB
testcase_08 AC 158 ms
41,596 KB
testcase_09 AC 156 ms
41,648 KB
testcase_10 AC 156 ms
41,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class DonotSayN {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            int P = scanner.nextInt();
            for(int i = 0 ; i < P ; i++){
                int N = scanner.nextInt();
                int K = scanner.nextInt();
                if((N - 1) % (K + 1) == 0){
                    System.out.println("Lose");
                }else{
                    System.out.println("Win");
                }
            }
            
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
        }catch(Exception E){
            System.out.println("想定外のエラーです");
        }
    }
}
0