結果

問題 No.8 N言っちゃダメゲーム
ユーザー GrenacheGrenache
提出日時 2015-07-27 18:07:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 75,436 KB
実行使用メモリ 57,212 KB
最終ジャッジ日時 2024-07-16 04:12:32
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,076 KB
testcase_01 AC 123 ms
54,148 KB
testcase_02 AC 123 ms
54,444 KB
testcase_03 AC 152 ms
56,616 KB
testcase_04 AC 160 ms
57,016 KB
testcase_05 AC 152 ms
57,072 KB
testcase_06 AC 147 ms
56,788 KB
testcase_07 AC 158 ms
57,080 KB
testcase_08 AC 148 ms
56,656 KB
testcase_09 AC 153 ms
56,864 KB
testcase_10 AC 147 ms
57,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder8 {

    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();
        	
        	boolean[] dp = new boolean[n + 1];
        	int win = n - 1;
        	while (win >= 0) {
        		dp[win] = true;
        		win -= k + 1;
        	}

            if (!dp[0]) {
            	System.out.println("Win");
            } else {
            	System.out.println("Lose");
            }

        }

        sc.close();
    }
}
0