結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | tenten |
提出日時 | 2023-02-14 13:11:24 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,113 bytes |
コンパイル時間 | 3,145 ms |
コンパイル使用メモリ | 97,428 KB |
実行使用メモリ | 60,656 KB |
最終ジャッジ日時 | 2024-07-17 03:08:40 |
合計ジャッジ時間 | 9,438 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,172 KB |
testcase_01 | AC | 54 ms
50,236 KB |
testcase_02 | AC | 54 ms
50,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.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(); boolean[] canWin = new boolean[n + 1]; canWin[0] = true; for (int i = 1; i <= n; i++) { for (int j = 1; j <= k && j <= i; j++) { if (!canWin[i - j]) { canWin[i] = true; break; } } } if (canWin[n]) { sb.append("Win\n"); } else { sb.append("Lose\n"); } } System.out.print(sb); } } 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(); } }