結果

問題 No.1103 Directed Length Sum
ユーザー yuruhiyayuruhiya
提出日時 2020-07-05 12:14:53
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,016 ms / 3,000 ms
コード長 347 bytes
コンパイル時間 11,632 ms
コンパイル使用メモリ 296,156 KB
実行使用メモリ 138,336 KB
最終ジャッジ日時 2024-06-30 20:31:04
合計ジャッジ時間 21,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 545 ms
138,336 KB
testcase_03 AC 426 ms
82,504 KB
testcase_04 AC 569 ms
47,908 KB
testcase_05 AC 1,016 ms
81,976 KB
testcase_06 AC 353 ms
35,388 KB
testcase_07 AC 66 ms
12,032 KB
testcase_08 AC 111 ms
15,832 KB
testcase_09 AC 37 ms
7,680 KB
testcase_10 AC 175 ms
20,096 KB
testcase_11 AC 641 ms
59,136 KB
testcase_12 AC 362 ms
35,628 KB
testcase_13 AC 166 ms
20,496 KB
testcase_14 AC 26 ms
6,944 KB
testcase_15 AC 281 ms
28,800 KB
testcase_16 AC 719 ms
62,736 KB
testcase_17 AC 762 ms
64,100 KB
testcase_18 AC 181 ms
19,984 KB
testcase_19 AC 662 ms
59,888 KB
testcase_20 AC 49 ms
8,320 KB
testcase_21 AC 109 ms
14,848 KB
testcase_22 AC 541 ms
45,200 KB
testcase_23 AC 309 ms
30,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7

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, dist, g)
  res = (1i64..dist.to_i64).sum
  g[v].each do |u|
    res += dfs(u, dist + 1, g)
  end
  res % MOD
end

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