結果

問題 No.2726 Rooted Tree Nim
ユーザー MasKoaTSMasKoaTS
提出日時 2024-03-29 15:42:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 150,788 KB
最終ジャッジ日時 2024-09-30 15:03:21
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,244 KB
testcase_01 AC 209 ms
80,036 KB
testcase_02 AC 207 ms
104,520 KB
testcase_03 AC 316 ms
135,240 KB
testcase_04 AC 312 ms
135,360 KB
testcase_05 AC 275 ms
150,788 KB
testcase_06 AC 276 ms
150,676 KB
testcase_07 AC 327 ms
135,572 KB
testcase_08 AC 307 ms
141,136 KB
testcase_09 AC 213 ms
105,300 KB
testcase_10 AC 223 ms
113,092 KB
testcase_11 AC 232 ms
109,712 KB
testcase_12 AC 269 ms
133,320 KB
testcase_13 AC 206 ms
103,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve(N, K, E, A):
    G = [[] for _ in [0] * N]
    for x, y in E:
        G[x].append(y)
        G[y].append(x)
    D = [-1] * N
    D[0] = 0
    S = [0]
    while(S):
        x = S.pop()
        y = D[x]
        for nx in G[x]:
            if(D[nx] >= 0):
                continue
            ny = y ^ 1
            D[nx] = ny
            S.append(nx)
    grundy = 0
    for x in [v for v in range(N) if(D[v] == 1)]:
        grundy ^= A[x] % (K + 1)
    if(grundy):
        return 'K'
    return 'P'

t = int(input())
for _ in [0] * t:
    N, K = map(int, input().split())
    E = [[x - 1 for x in map(int, input().split())] for _ in [0] * (N - 1)]
    A = list(map(int, input().split()))
    print(solve(N, K, E, A))
0