結果

問題 No.2726 Rooted Tree Nim
ユーザー titiatitia
提出日時 2024-04-27 01:18:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,018 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 69,616 KB
最終ジャッジ日時 2024-11-14 17:40:53
合計ジャッジ時間 13,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 770 ms
11,008 KB
testcase_02 AC 768 ms
30,492 KB
testcase_03 AC 1,018 ms
65,600 KB
testcase_04 AC 1,010 ms
65,472 KB
testcase_05 AC 789 ms
60,900 KB
testcase_06 AC 797 ms
60,908 KB
testcase_07 AC 956 ms
67,456 KB
testcase_08 AC 958 ms
69,616 KB
testcase_09 AC 723 ms
24,844 KB
testcase_10 AC 763 ms
25,060 KB
testcase_11 AC 754 ms
30,172 KB
testcase_12 AC 846 ms
61,448 KB
testcase_13 AC 731 ms
25,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N,K=map(int,input().split())

    E=[[] for i in range(N)]

    for i in range(N-1):
        x,y=map(int,input().split())
        x-=1
        y-=1

        E[x].append(y)
        E[y].append(x)

    A=list(map(int,input().split()))

    DIS=[-1]*N
    DIS[0]=0
    Q=[0]
    while Q:
        x=Q.pop()
        for to in E[x]:
            if DIS[to]==-1:
                DIS[to]=DIS[x]+1
                Q.append(to)

    XOR=0

    for i in range(N):
        if DIS[i]%2==1:
            XOR^=(A[i]%(K+1))

    if XOR!=0:
        print("K")
    else:
        print("P")
0