結果

問題 No.1103 Directed Length Sum
ユーザー yuruhiyayuruhiya
提出日時 2020-07-05 12:09:19
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 359 bytes
コンパイル時間 11,624 ms
コンパイル使用メモリ 296,932 KB
実行使用メモリ 97,048 KB
最終ジャッジ日時 2024-06-30 20:30:02
合計ジャッジ時間 21,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 RE -
testcase_03 AC 438 ms
82,616 KB
testcase_04 AC 567 ms
48,068 KB
testcase_05 AC 1,002 ms
82,108 KB
testcase_06 AC 354 ms
35,276 KB
testcase_07 AC 63 ms
12,160 KB
testcase_08 AC 101 ms
15,876 KB
testcase_09 AC 38 ms
7,680 KB
testcase_10 AC 165 ms
20,148 KB
testcase_11 AC 630 ms
59,248 KB
testcase_12 AC 355 ms
35,636 KB
testcase_13 AC 167 ms
20,488 KB
testcase_14 AC 27 ms
6,940 KB
testcase_15 AC 266 ms
28,748 KB
testcase_16 AC 704 ms
62,736 KB
testcase_17 AC 737 ms
64,092 KB
testcase_18 AC 156 ms
19,984 KB
testcase_19 AC 650 ms
59,852 KB
testcase_20 AC 46 ms
8,320 KB
testcase_21 AC 101 ms
14,848 KB
testcase_22 AC 523 ms
45,276 KB
testcase_23 AC 288 ms
30,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
g = Array.new(n) { [] of Int32 }
flag = [false] * n
n.pred.times do
  a, b = read_line.split.map &.to_i.pred
  g[a] << b
  flag[b] = true
end

def dfs(v : Int32, dist : Int32, g : Array(Array(Int32)))
  res = (1..dist).sum.to_i64
  g[v].each do |u|
    res += dfs(u, dist + 1, g)
  end
  res
end

puts dfs(flag.index(false).not_nil!, 0, g)
0