結果

問題 No.2427 Tree Distance Two
ユーザー simansiman
提出日時 2023-08-23 19:08:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,138 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-12-22 02:49:48
合計ジャッジ時間 23,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 1,138 ms
43,008 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 1,131 ms
43,008 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 1,014 ms
41,472 KB
testcase_08 AC 1,052 ms
40,192 KB
testcase_09 AC 1,022 ms
40,576 KB
testcase_10 AC 1,030 ms
40,192 KB
testcase_11 AC 1,027 ms
40,448 KB
testcase_12 AC 1,060 ms
40,832 KB
testcase_13 AC 1,081 ms
39,936 KB
testcase_14 AC 895 ms
36,480 KB
testcase_15 AC 87 ms
12,288 KB
testcase_16 AC 87 ms
12,288 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 87 ms
12,032 KB
testcase_19 AC 87 ms
12,160 KB
testcase_20 AC 112 ms
12,800 KB
testcase_21 AC 113 ms
12,928 KB
testcase_22 AC 96 ms
12,416 KB
testcase_23 AC 93 ms
12,416 KB
testcase_24 AC 111 ms
12,928 KB
testcase_25 AC 332 ms
18,560 KB
testcase_26 AC 714 ms
30,720 KB
testcase_27 AC 510 ms
23,808 KB
testcase_28 AC 1,045 ms
40,832 KB
testcase_29 AC 922 ms
37,248 KB
testcase_30 AC 680 ms
30,464 KB
testcase_31 AC 449 ms
23,040 KB
testcase_32 AC 691 ms
30,464 KB
testcase_33 AC 620 ms
28,416 KB
testcase_34 AC 239 ms
17,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
G = Array.new(N + 1) { [] }

(N - 1).times do
  u, v = gets.split.map(&:to_i)

  G[u] << v
  G[v] << u
end

1.upto(N) do |u|
  cnt = 0

  G[u].each do |v|
    cnt += G[v].size - 1
  end

  puts cnt
end
0