結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | tenten |
提出日時 | 2022-07-28 16:43:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,475 bytes |
コンパイル時間 | 1,976 ms |
コンパイル使用メモリ | 78,280 KB |
実行使用メモリ | 58,740 KB |
最終ジャッジ日時 | 2024-07-18 07:30:50 |
合計ジャッジ時間 | 8,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
50,340 KB |
testcase_01 | AC | 47 ms
49,956 KB |
testcase_02 | AC | 50 ms
50,248 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
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(); } }