結果

問題 No.2427 Tree Distance Two
ユーザー tailstails
提出日時 2023-08-18 21:19:20
言語 cLay
(20240714-1)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 172,976 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-11-28 05:23:10
合計ジャッジ時間 5,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 46 ms
15,872 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 46 ms
16,000 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 37 ms
17,152 KB
testcase_08 AC 41 ms
17,280 KB
testcase_09 AC 39 ms
17,024 KB
testcase_10 AC 37 ms
17,024 KB
testcase_11 AC 38 ms
17,152 KB
testcase_12 AC 43 ms
16,896 KB
testcase_13 AC 45 ms
16,640 KB
testcase_14 AC 22 ms
15,488 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 9 ms
7,296 KB
testcase_26 AC 22 ms
11,520 KB
testcase_27 AC 17 ms
9,472 KB
testcase_28 AC 38 ms
15,104 KB
testcase_29 AC 31 ms
13,696 KB
testcase_30 AC 21 ms
11,264 KB
testcase_31 AC 14 ms
8,960 KB
testcase_32 AC 21 ms
11,136 KB
testcase_33 AC 18 ms
10,368 KB
testcase_34 AC 6 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@n,u[n],v[];rd((u--,v--)(n-1));
graph g;
g.setEdge(n,n-1,u,v);
rep(i,n){
	ll z=0;
	rep[g.edge[i]](j,g.es[i]){
		z+=g.es[j]-1;
	}
	wt(z);
}
0