結果

問題 No.8 N言っちゃダメゲーム
ユーザー tentententen
提出日時 2023-02-14 13:18:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,850 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 84,632 KB
実行使用メモリ 54,648 KB
最終ジャッジ日時 2023-09-24 03:10:20
合計ジャッジ時間 9,127 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,508 KB
testcase_01 AC 44 ms
49,448 KB
testcase_02 AC 44 ms
49,396 KB
testcase_03 AC 610 ms
54,648 KB
testcase_04 AC 1,740 ms
54,212 KB
testcase_05 AC 736 ms
54,328 KB
testcase_06 WA -
testcase_07 AC 411 ms
54,280 KB
testcase_08 AC 454 ms
54,536 KB
testcase_09 AC 571 ms
54,232 KB
testcase_10 AC 493 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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();
            BinaryIndexedTree bit = new BinaryIndexedTree(n + 1);
            for (int i = 1; i <= n; i++) {
                int current = bit.getSum(Math.max(1, i - k), i - 1);
                if (current == 0) {
                    bit.add(i, 1);
                }
            }
            if (bit.getSum(n - 1, n) == 0) {
                sb.append("Win\n");
            } else {
                sb.append("Lose\n");
            }
        }
        System.out.print(sb);
    }
}
class BinaryIndexedTree {
    int size;
    int[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new int[size];
    }
    
    public void add(int idx, int value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public int getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public int getSum(int x) {
        int mask = 1;
        int ans = 0;
        while (x > 0) {
            if ((x & mask) != 0) {
                ans += tree[x];
                x -= mask;
            }
            mask <<= 1;
        }
        return ans;
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0