結果

問題 No.806 木を道に
ユーザー taki_gtaki_g
提出日時 2019-03-23 20:27:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 168,496 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 17:53:45
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 49 ms
6,944 KB
testcase_13 AC 36 ms
6,940 KB
testcase_14 AC 46 ms
6,944 KB
testcase_15 AC 50 ms
6,944 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 44 ms
6,940 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 14 ms
6,940 KB
testcase_20 AC 43 ms
6,940 KB
testcase_21 AC 24 ms
6,940 KB
testcase_22 AC 58 ms
6,940 KB
testcase_23 AC 58 ms
6,944 KB
testcase_24 AC 31 ms
6,944 KB
testcase_25 AC 46 ms
6,940 KB
testcase_26 AC 18 ms
6,940 KB
testcase_27 AC 55 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0, i##_len=(n); i<i##_len; ++i)
#define REP(i,num,n) for(ll i=num, i##_len=(n); i<i##_len; ++i)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((ll)(x).size())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
#define MEMSET(v, h) memset((v), h, sizeof(v))
#define pb push_back
#define mp make_pair
#define y0 y3487465
#define y1 y8687969
#define j0 j1347829
#define j1 j234892
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
using namespace std;

int main(){
  ll N;
  cin >> N;

  vector<ll> nums(N+1, 0);
  rep(i,N-1){
    ll a, b;
    cin >> a >> b;
    ++nums[a];
    ++nums[b];
  }
  
  ll ans = 0;
  REP(i,1,N+1){
    ll sub = nums[i] - 2;
    if(sub > 0){
      ans += sub;
    }
  }
  
  cout << ans << endl;



  return 0;
}
0