結果

問題 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,531 ms
コンパイル使用メモリ 168,420 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 22:48:24
合計ジャッジ時間 4,937 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 13 ms
4,348 KB
testcase_11 AC 12 ms
4,348 KB
testcase_12 AC 49 ms
4,348 KB
testcase_13 AC 36 ms
4,348 KB
testcase_14 AC 47 ms
4,348 KB
testcase_15 AC 50 ms
4,348 KB
testcase_16 AC 18 ms
4,348 KB
testcase_17 AC 43 ms
4,348 KB
testcase_18 AC 6 ms
4,348 KB
testcase_19 AC 15 ms
4,348 KB
testcase_20 AC 43 ms
4,348 KB
testcase_21 AC 24 ms
4,348 KB
testcase_22 AC 58 ms
4,348 KB
testcase_23 AC 58 ms
4,348 KB
testcase_24 AC 30 ms
4,348 KB
testcase_25 AC 45 ms
4,348 KB
testcase_26 AC 18 ms
4,348 KB
testcase_27 AC 56 ms
4,348 KB
testcase_28 AC 3 ms
4,348 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