結果

問題 No.2726 Rooted Tree Nim
ユーザー tailstails
提出日時 2024-04-12 22:31:02
言語 cLay
(20240714-1)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 3,732 ms
コンパイル使用メモリ 178,964 KB
実行使用メモリ 20,968 KB
最終ジャッジ日時 2024-10-02 23:30:13
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,624 KB
testcase_01 AC 14 ms
14,796 KB
testcase_02 AC 24 ms
13,176 KB
testcase_03 AC 42 ms
20,968 KB
testcase_04 AC 42 ms
20,844 KB
testcase_05 AC 22 ms
15,644 KB
testcase_06 AC 22 ms
14,776 KB
testcase_07 AC 25 ms
14,960 KB
testcase_08 AC 26 ms
15,520 KB
testcase_09 AC 20 ms
13,196 KB
testcase_10 AC 20 ms
13,316 KB
testcase_11 AC 20 ms
12,960 KB
testcase_12 AC 25 ms
14,732 KB
testcase_13 AC 20 ms
14,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int a[2d5],k;
graph g;
int f(int i,int p,int w){
	int x=w?a[i-1]%(k+1):0;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			x^=f(j,i,!w);
		}
	}
	return x;
}
{
	ll@t;
	rep(t){
		int@n;
		rd(k);
		int@(x,y)[n-1];
		rd(a(n));
		g.setEdge(n+1,n-1,x,y);
		wt(f(1,1,0)?'K':'P');
	}
}
0