結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | H Shibusawa |
提出日時 | 2020-11-15 12:25:05 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,415 bytes |
コンパイル時間 | 2,266 ms |
コンパイル使用メモリ | 165,740 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 01:10:08 |
合計ジャッジ時間 | 4,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | AC | 7 ms
6,944 KB |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 19 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 62 ms
6,944 KB |
testcase_24 | AC | 59 ms
6,940 KB |
testcase_25 | AC | 65 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define rep(i,n) for(int i=0; i<(int)n; i++) #define rep1(i,n) for(int i=1; i<(int)n; i++) #define repa(i,a,n) for(int i=(a); i<(int)(n); i++) #define all(vec) vec.begin(),vec.end() #define COUT(x) cout<<(x)<<endl #define YES(x) cout<<(x?"YES":"NO")<<endl #define Yes(x) cout<<(x?"Yes":"No")<<endl #define F first #define S second using vi = vector<int>; using vs = vector<string>; using vvi = vector<vi>; using pii = pair<int, int>; using vpii = vector<pii>; const int dx[4] = {1, 0,-1, 0}; const int dy[4] = {0, 1, 0,-1}; int gcd(int a, int b){if(a%b == 0){return(b);}else{return(gcd(b, a%b));}} int lcm(int a, int b){return a/gcd(a, b)*b;} template <typename T> bool chmax(T &a,const T& b){if(a<b){a=b;return true;}return false;} template <typename T> bool chmin(T &a,const T& b){if(a>b){a=b;return true;}return false;} //cout << fixed << setprecision(15); int N, M, K, H, W, X, Y; string S,T; const int INF = 1e18; // const int mod = 1e9+7; signed main(){ cin >> N; vi brg(N,0); rep(i,N-1){ int a, b; cin >> a >> b; brg[a]++; brg[b]++; } int cnt0 = 0; int cnt1 = 0; rep(i,N){ if(brg[i]==0) cnt0++; else if(brg[i]==1) cnt1++; } if(cnt0 == 0) COUT("Bob"); else if(cnt0 > 2) COUT("Alice"); else if(cnt1 == 0)COUT("Bob"); else COUT("Alice"); return 0; }