結果

問題 No.806 木を道に
ユーザー NacoNaco
提出日時 2019-07-01 15:34:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 66,272 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-07-16 03:00:37
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 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 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 21 ms
6,944 KB
testcase_11 AC 18 ms
6,940 KB
testcase_12 AC 88 ms
7,296 KB
testcase_13 AC 64 ms
6,944 KB
testcase_14 AC 85 ms
7,296 KB
testcase_15 AC 89 ms
7,424 KB
testcase_16 AC 30 ms
6,940 KB
testcase_17 AC 77 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 24 ms
6,944 KB
testcase_20 AC 81 ms
6,944 KB
testcase_21 AC 44 ms
6,940 KB
testcase_22 AC 121 ms
8,064 KB
testcase_23 AC 109 ms
8,192 KB
testcase_24 AC 47 ms
6,940 KB
testcase_25 AC 71 ms
7,040 KB
testcase_26 AC 23 ms
6,940 KB
testcase_27 AC 85 ms
8,064 KB
testcase_28 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
using namespace std;

int main(){
    int N;
    cin >> N;
    map<int,int> m;
    for(int i=1;i<N;i++){
        int a,b;
        cin >> a >> b;
        m[a]++;m[b]++;
    }
    long long ans=0;
    for(auto it=m.begin();it!=m.end();it++){
        if(it->second-2>=0){
            ans+=it->second-2;
        }
    }
    cout << ans << endl;
}
0