結果
問題 | No.2278 Time Bomb Game 2 |
ユーザー | ks2m |
提出日時 | 2023-04-21 23:04:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,544 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 78,056 KB |
実行使用メモリ | 764,208 KB |
最終ジャッジ日時 | 2024-11-06 16:30:49 |
合計ジャッジ時間 | 8,207 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
57,116 KB |
testcase_01 | AC | 55 ms
50,384 KB |
testcase_02 | AC | 55 ms
50,316 KB |
testcase_03 | WA | - |
testcase_04 | AC | 56 ms
50,252 KB |
testcase_05 | AC | 56 ms
50,272 KB |
testcase_06 | AC | 64 ms
50,268 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 84 ms
51,208 KB |
testcase_09 | AC | 91 ms
51,456 KB |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { static int n; static char[] s; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); n = Integer.parseInt(sa[0]); int k = Integer.parseInt(sa[1]) - 1; int t = Integer.parseInt(sa[2]); s = br.readLine().toCharArray(); br.close(); char res = dfs(k, t, -2); if (res == 'A') { System.out.println("Alice"); } else { System.out.println("Bob"); } } static char dfs(int k, int t, int p) { if (t == 0) { if (s[k] == 'A') { return 'B'; } else { return 'A'; } } char c = s[k]; if (t % 2 == 1) { if (p != k - 1 && k > 0) { char l = s[k - 1]; if (l != c) { if (k == 1 || s[k - 2] == c) { return c; } if (k < n - 1 || s[k + 1] == c) { return c; } } char res = dfs(k - 1, t - 1, k); if (res == c) { return c; } } if (p != k + 1 && k < n - 1) { char r = s[k + 1]; if (r != c) { if (k == n - 2 || s[k + 2] == c) { return c; } if (k > 0 || s[k - 1] == c) { return c; } } char res = dfs(k + 1, t - 1, k); if (res == c) { return c; } } } else { char res = dfs(k - 1, t - 1, k); if (res == c) { return c; } res = dfs(k + 1, t - 1, k); if (res == c) { return c; } } if (s[k] == 'A') { return 'B'; } else { return 'A'; } } }