結果

問題 No.8 N言っちゃダメゲーム
ユーザー tentententen
提出日時 2022-07-28 16:43:18
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,475 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 56,348 KB
最終ジャッジ日時 2023-09-25 09:10:10
合計ジャッジ時間 9,024 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,892 KB
testcase_01 AC 46 ms
49,396 KB
testcase_02 AC 46 ms
49,272 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int p = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (p-- > 0) {
            int n = sc.nextInt();
            int k = sc.nextInt();
            boolean[] wins = new boolean[n];
            //wins[n - 1] = true;
            for (int i = n - 2; i >= 0; i--) {
                for (int j = 1; j <= k && j + i < n && !wins[i]; j++) {
                    wins[i] |= !wins[j + i];
                }
            }
            if (wins[0]) {
                sb.append("Win\n");
            } else {
                sb.append("Lose\n");
            }
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0