結果

問題 No.2427 Tree Distance Two
ユーザー laneguelanegue
提出日時 2023-08-18 21:38:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 3,316 ms
コンパイル使用メモリ 174,208 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-05-06 03:33:38
合計ジャッジ時間 14,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 600 ms
39,936 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 606 ms
40,064 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 534 ms
25,728 KB
testcase_08 AC 557 ms
28,400 KB
testcase_09 AC 557 ms
26,624 KB
testcase_10 AC 563 ms
23,680 KB
testcase_11 AC 545 ms
27,264 KB
testcase_12 AC 557 ms
27,008 KB
testcase_13 AC 563 ms
38,784 KB
testcase_14 AC 447 ms
24,576 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 16 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 135 ms
13,952 KB
testcase_26 AC 349 ms
24,480 KB
testcase_27 AC 239 ms
21,760 KB
testcase_28 AC 552 ms
39,680 KB
testcase_29 AC 474 ms
36,480 KB
testcase_30 AC 346 ms
24,320 KB
testcase_31 AC 214 ms
17,408 KB
testcase_32 AC 342 ms
24,448 KB
testcase_33 AC 310 ms
23,936 KB
testcase_34 AC 85 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
void main(){
  int n = readln.chomp.to!int;
  auto e = new int[][n];
  for(auto i = 0; i < n - 1; i++){
    auto input = readln.chomp.split.to!(int[]);
    e[input[0] - 1] ~= input[1] - 1;
    e[input[1] - 1] ~= input[0] - 1;
  }
  for(auto i = 0; i < n; i++){
    auto s = 0;
    foreach(j; e[i]){
      s += e[j].length - 1;
    }
    writeln(s);
  }
}
0