結果
問題 | No.2726 Rooted Tree Nim |
ユーザー | ks2m |
提出日時 | 2024-04-12 22:46:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,241 ms / 2,000 ms |
コード長 | 1,435 bytes |
コンパイル時間 | 2,339 ms |
コンパイル使用メモリ | 78,944 KB |
実行使用メモリ | 99,736 KB |
最終ジャッジ日時 | 2024-10-02 23:37:02 |
合計ジャッジ時間 | 15,586 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
49,912 KB |
testcase_01 | AC | 602 ms
68,552 KB |
testcase_02 | AC | 868 ms
73,740 KB |
testcase_03 | AC | 1,083 ms
88,736 KB |
testcase_04 | AC | 1,241 ms
95,052 KB |
testcase_05 | AC | 874 ms
91,312 KB |
testcase_06 | AC | 1,006 ms
99,536 KB |
testcase_07 | AC | 1,216 ms
99,736 KB |
testcase_08 | AC | 1,190 ms
98,532 KB |
testcase_09 | AC | 713 ms
67,132 KB |
testcase_10 | AC | 758 ms
64,268 KB |
testcase_11 | AC | 801 ms
70,012 KB |
testcase_12 | AC | 992 ms
93,908 KB |
testcase_13 | AC | 772 ms
67,764 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); PrintWriter pw = new PrintWriter(System.out); for (int z = 0; z < t; z++) { String[] sa = br.readLine().split(" "); int n = Integer.parseInt(sa[0]); int k = Integer.parseInt(sa[1]); List<List<Integer>> list = new ArrayList<>(n); for (int i = 0; i < n; i++) { list.add(new ArrayList<>()); } for (int i = 0; i < n - 1; i++) { sa = br.readLine().split(" "); int a = Integer.parseInt(sa[0]) - 1; int b = Integer.parseInt(sa[1]) - 1; list.get(a).add(b); list.get(b).add(a); } sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } Queue<Integer> que = new ArrayDeque<>(); que.add(0); int[] d = new int[n]; Arrays.fill(d, -1); d[0] = 0; while (!que.isEmpty()) { int cur = que.poll(); for (int next : list.get(cur)) { if (d[next] == -1) { que.add(next); d[next] = d[cur] + 1; } } } int k1 = k + 1; int g = 0; for (int i = 0; i < n; i++) { if (d[i] % 2 == 1) { g ^= a[i] % k1; } } if (g == 0) { pw.println("P"); } else { pw.println("K"); } } pw.flush(); br.close(); } }