結果

問題 No.8 N言っちゃダメゲーム
ユーザー tentententen
提出日時 2024-02-05 13:44:25
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,614 bytes
コンパイル時間 6,176 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 62,836 KB
最終ジャッジ日時 2024-02-05 13:44:39
合計ジャッジ時間 9,933 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
54,756 KB
testcase_01 AC 69 ms
54,752 KB
testcase_02 AC 70 ms
54,624 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.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        String result = IntStream.range(0, t).mapToObj(x -> {
            int n = sc.nextInt();
            int k = sc.nextInt();
            boolean[] dp = new boolean[n + 1];
            dp[0] = true;
            for (int i = 1; i <= n; i++) {
                for (int j = 1; j <= k && j <= i && !dp[i]; j++) {
                    dp[i] = !dp[i - j];
                }
            }
            return dp[n] ? "Win" : "Lose";
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0