結果

問題 No.8 N言っちゃダメゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-25 17:35:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 42,092 KB
最終ジャッジ日時 2024-05-05 13:30:59
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,460 KB
testcase_01 AC 129 ms
41,260 KB
testcase_02 AC 130 ms
41,324 KB
testcase_03 AC 152 ms
41,596 KB
testcase_04 AC 165 ms
42,028 KB
testcase_05 AC 155 ms
41,684 KB
testcase_06 AC 155 ms
41,884 KB
testcase_07 AC 153 ms
41,788 KB
testcase_08 AC 155 ms
42,008 KB
testcase_09 AC 158 ms
42,092 KB
testcase_10 AC 153 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int P = sc.nextInt();
        for(int i=0; i<P; i++){
            int N = sc.nextInt();
            int K = sc.nextInt();
            String S = judge(N,K);
            System.out.println(S);
        }
    }
    static String judge(int x, int y){
        if(y>=x){
            return "Win";
        }
        int z = x%(y+1);
        if(z==1){
            return "Lose";
        }else{
            return "Win";
        }
    }
}
0