結果

問題 No.2427 Tree Distance Two
ユーザー laneguelanegue
提出日時 2023-08-18 21:38:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 4,741 ms
コンパイル使用メモリ 174,208 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-11-28 06:09:18
合計ジャッジ時間 16,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 640 ms
39,936 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 638 ms
39,936 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 559 ms
25,856 KB
testcase_08 AC 576 ms
28,416 KB
testcase_09 AC 578 ms
26,752 KB
testcase_10 AC 582 ms
23,552 KB
testcase_11 AC 572 ms
27,392 KB
testcase_12 AC 591 ms
27,008 KB
testcase_13 AC 608 ms
38,784 KB
testcase_14 AC 456 ms
24,576 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 14 ms
5,248 KB
testcase_25 AC 150 ms
13,952 KB
testcase_26 AC 388 ms
24,576 KB
testcase_27 AC 274 ms
21,760 KB
testcase_28 AC 595 ms
39,680 KB
testcase_29 AC 518 ms
36,480 KB
testcase_30 AC 370 ms
24,320 KB
testcase_31 AC 233 ms
17,408 KB
testcase_32 AC 370 ms
24,320 KB
testcase_33 AC 328 ms
24,064 KB
testcase_34 AC 95 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