結果

問題 No.2427 Tree Distance Two
ユーザー simansiman
提出日時 2023-08-23 19:08:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,161 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-06-01 16:30:44
合計ジャッジ時間 23,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 1,117 ms
43,136 KB
testcase_04 AC 84 ms
12,288 KB
testcase_05 AC 1,161 ms
43,136 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 1,013 ms
41,600 KB
testcase_08 AC 1,046 ms
40,192 KB
testcase_09 AC 1,003 ms
40,448 KB
testcase_10 AC 1,026 ms
40,192 KB
testcase_11 AC 1,035 ms
40,448 KB
testcase_12 AC 1,072 ms
40,832 KB
testcase_13 AC 1,102 ms
39,936 KB
testcase_14 AC 860 ms
36,608 KB
testcase_15 AC 85 ms
12,288 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 85 ms
12,288 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 84 ms
12,160 KB
testcase_20 AC 110 ms
12,928 KB
testcase_21 AC 114 ms
12,928 KB
testcase_22 AC 94 ms
12,416 KB
testcase_23 AC 91 ms
12,544 KB
testcase_24 AC 106 ms
12,672 KB
testcase_25 AC 330 ms
18,560 KB
testcase_26 AC 716 ms
30,848 KB
testcase_27 AC 534 ms
23,680 KB
testcase_28 AC 1,056 ms
40,704 KB
testcase_29 AC 958 ms
37,376 KB
testcase_30 AC 710 ms
30,592 KB
testcase_31 AC 468 ms
23,296 KB
testcase_32 AC 701 ms
30,464 KB
testcase_33 AC 613 ms
28,416 KB
testcase_34 AC 232 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