結果

問題 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  
実行時間 994 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 69,496 KB
最終ジャッジ日時 2024-04-27 01:18:24
合計ジャッジ時間 11,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 779 ms
10,752 KB
testcase_02 AC 706 ms
30,568 KB
testcase_03 AC 994 ms
65,596 KB
testcase_04 AC 979 ms
65,476 KB
testcase_05 AC 760 ms
60,872 KB
testcase_06 AC 750 ms
60,772 KB
testcase_07 AC 874 ms
67,576 KB
testcase_08 AC 917 ms
69,496 KB
testcase_09 AC 699 ms
24,716 KB
testcase_10 AC 743 ms
24,940 KB
testcase_11 AC 698 ms
30,300 KB
testcase_12 AC 798 ms
61,568 KB
testcase_13 AC 701 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