結果

問題 No.806 木を道に
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-03-22 22:43:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 59,652 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-19 06:08:23
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 46 ms
6,940 KB
testcase_13 AC 34 ms
6,944 KB
testcase_14 AC 44 ms
6,940 KB
testcase_15 AC 47 ms
6,940 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 38 ms
6,940 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 13 ms
6,944 KB
testcase_20 AC 40 ms
6,940 KB
testcase_21 AC 23 ms
6,940 KB
testcase_22 AC 54 ms
6,948 KB
testcase_23 AC 54 ms
6,940 KB
testcase_24 AC 30 ms
6,940 KB
testcase_25 AC 42 ms
6,944 KB
testcase_26 AC 15 ms
6,944 KB
testcase_27 AC 52 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using ll = long long;
#define MOD 1000000007
using namespace std;

int main(){
    int N;
    ll cnt = 0;
    cin >> N;
    vector<int> d(N,0);
    for(int i = 0; i < N-1; i++)
    {
        int a,b;
        cin >> a >> b;
        a--;b--;
        d[a]++;
        d[b]++;
    }
    for(int i = 0; i < N; i++)
    {
        if (d[i] == 1) {
            cnt++;
        }
    }
    cout << cnt - 2 << endl;
    return 0;
}
0