結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | tenten |
提出日時 | 2024-02-05 13:44:25 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,614 bytes |
コンパイル時間 | 4,390 ms |
コンパイル使用メモリ | 86,456 KB |
実行使用メモリ | 44,384 KB |
最終ジャッジ日時 | 2024-09-28 11:33:52 |
合計ジャッジ時間 | 9,847 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
37,932 KB |
testcase_01 | AC | 59 ms
37,056 KB |
testcase_02 | AC | 58 ms
37,316 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
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(); } } }