結果

問題 No.806 木を道に
ユーザー けーむけーむ
提出日時 2020-07-08 15:42:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 1,454 ms
コンパイル使用メモリ 171,852 KB
実行使用メモリ 9,312 KB
最終ジャッジ日時 2024-10-04 01:31:19
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 7 ms
6,820 KB
testcase_12 AC 27 ms
8,192 KB
testcase_13 AC 20 ms
6,912 KB
testcase_14 AC 27 ms
7,936 KB
testcase_15 AC 27 ms
8,448 KB
testcase_16 AC 11 ms
6,816 KB
testcase_17 AC 24 ms
7,808 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 25 ms
7,680 KB
testcase_21 AC 14 ms
6,816 KB
testcase_22 AC 36 ms
9,216 KB
testcase_23 AC 33 ms
9,216 KB
testcase_24 AC 15 ms
6,820 KB
testcase_25 AC 22 ms
7,552 KB
testcase_26 AC 8 ms
6,820 KB
testcase_27 AC 24 ms
9,312 KB
testcase_28 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++)
#define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++)
#define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--)
#define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) ((ll)(x).size())
#define len(x) ((ll)(x).length())
#define endl "\n"

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    ll n;
    cin >> n;
    vector<vector<ll>> g(n);
    rep(i, n - 1) {
        ll a, b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    ll ans = 0;
    rep(i, n) {
        ans += max(0LL, sz(g[i]) - 2);
    }
    cout << ans << endl;
    return 0;
}
0