結果
問題 | No.806 木を道に |
ユーザー | matsukin1111 |
提出日時 | 2019-03-29 21:00:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 124 ms / 2,000 ms |
コード長 | 933 bytes |
コンパイル時間 | 829 ms |
コンパイル使用メモリ | 94,392 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-11-07 01:24:58 |
合計ジャッジ時間 | 4,195 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 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,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 23 ms
6,820 KB |
testcase_11 | AC | 20 ms
6,816 KB |
testcase_12 | AC | 104 ms
7,424 KB |
testcase_13 | AC | 71 ms
6,816 KB |
testcase_14 | AC | 98 ms
7,296 KB |
testcase_15 | AC | 102 ms
7,552 KB |
testcase_16 | AC | 33 ms
6,820 KB |
testcase_17 | AC | 85 ms
7,040 KB |
testcase_18 | AC | 9 ms
6,816 KB |
testcase_19 | AC | 24 ms
6,816 KB |
testcase_20 | AC | 87 ms
6,912 KB |
testcase_21 | AC | 45 ms
6,820 KB |
testcase_22 | AC | 122 ms
8,192 KB |
testcase_23 | AC | 124 ms
8,192 KB |
testcase_24 | AC | 49 ms
6,816 KB |
testcase_25 | AC | 75 ms
7,168 KB |
testcase_26 | AC | 25 ms
6,820 KB |
testcase_27 | AC | 88 ms
7,936 KB |
testcase_28 | AC | 4 ms
6,820 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include <cstdlib> #include <cmath> #include<cctype> #include<string> #include<set> #include <map> #include<algorithm> #include <functional> #include<vector> #include<climits> #include<stack> #include<queue> #include <deque> #include <climits> #include <typeinfo> #include <utility> #define all(x) (x).begin(),(x).end() #define rep(i,m,n) for(int i = m;i < n;++i) #define pb push_back #define fore(i,a) for(auto &i:a) #define rrep(i,m,n) for(int i = m;i >= n;--i) #define INF INT_MAX/2 using namespace std; using ll = long long; using R = double; const ll inf = 1LL << 50; const ll MOD = 1e9 + 7; struct edge { ll from; ll to; ll cost; }; int main(){ int n; cin >> n; map<int, int>mp; rep(i, 0, n - 1) { int a, b; cin >> a >> b; mp[a]++; mp[b]++; } int ans = 0; fore(v, mp) { if (v.second >= 3)ans += v.second - 2; } cout << ans << endl; return 0; }