結果

問題 No.763 Noelちゃんと木遊び
ユーザー ikdikd
提出日時 2018-12-11 07:23:36
言語 Nim
(2.0.2)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 3,416 ms
コンパイル使用メモリ 66,976 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-07-01 05:48:37
合計ジャッジ時間 5,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
20,352 KB
testcase_01 AC 28 ms
6,940 KB
testcase_02 AC 73 ms
6,940 KB
testcase_03 AC 46 ms
6,944 KB
testcase_04 AC 31 ms
6,944 KB
testcase_05 AC 45 ms
6,944 KB
testcase_06 AC 86 ms
7,296 KB
testcase_07 AC 83 ms
7,168 KB
testcase_08 AC 47 ms
6,940 KB
testcase_09 AC 30 ms
6,944 KB
testcase_10 AC 13 ms
6,944 KB
testcase_11 AC 86 ms
7,424 KB
testcase_12 AC 72 ms
6,944 KB
testcase_13 AC 71 ms
6,940 KB
testcase_14 AC 63 ms
6,940 KB
testcase_15 AC 42 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 44 ms
6,940 KB
testcase_18 AC 83 ms
7,296 KB
testcase_19 AC 76 ms
6,944 KB
testcase_20 AC 75 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

var
  g: seq[seq[int]]
  ans = 0

proc f(i, p: int): bool =
  var cnt = 0
  for j in g[i]:
    if j!=p:
      if not f(j, i):
        cnt+=1
  result = cnt>0
  if not result: ans+=1

proc main() =
  let n = stdin.readLine.parseInt
  g = newSeqWith(n, newSeq[int]())
  for _ in 1..<n:
    let ab = stdin.readLine.split.map(parseInt)
    g[ab[0]-1].add(ab[1]-1)
    g[ab[1]-1].add(ab[0]-1)
  let _ = f(0, -1)
  echo ans
main()
0