結果
問題 | No.1506 Unbalanced Pocky Game |
ユーザー | Novi |
提出日時 | 2021-08-15 14:45:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,204 bytes |
コンパイル時間 | 3,508 ms |
コンパイル使用メモリ | 230,648 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 15:55:57 |
合計ジャッジ時間 | 5,778 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 9 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 8 ms
6,820 KB |
testcase_09 | WA | - |
testcase_10 | AC | 10 ms
6,816 KB |
testcase_11 | AC | 6 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | AC | 4 ms
6,816 KB |
testcase_14 | AC | 6 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 5 ms
6,820 KB |
testcase_19 | AC | 5 ms
6,820 KB |
testcase_20 | AC | 10 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 3 ms
6,816 KB |
testcase_25 | WA | - |
testcase_26 | AC | 20 ms
6,816 KB |
testcase_27 | AC | 20 ms
6,816 KB |
testcase_28 | AC | 19 ms
6,816 KB |
testcase_29 | WA | - |
testcase_30 | AC | 20 ms
6,820 KB |
testcase_31 | WA | - |
testcase_32 | AC | 18 ms
6,820 KB |
testcase_33 | AC | 19 ms
6,816 KB |
testcase_34 | AC | 18 ms
6,820 KB |
testcase_35 | WA | - |
testcase_36 | AC | 3 ms
6,816 KB |
testcase_37 | AC | 3 ms
6,820 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
6,816 KB |
testcase_41 | WA | - |
testcase_42 | AC | 3 ms
6,816 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 2 ms
6,816 KB |
testcase_46 | AC | 9 ms
6,820 KB |
testcase_47 | AC | 4 ms
6,816 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 10 ms
6,820 KB |
testcase_52 | WA | - |
testcase_53 | AC | 10 ms
6,816 KB |
testcase_54 | AC | 5 ms
6,816 KB |
testcase_55 | WA | - |
testcase_56 | AC | 5 ms
6,816 KB |
testcase_57 | AC | 8 ms
6,820 KB |
testcase_58 | WA | - |
testcase_59 | AC | 4 ms
6,816 KB |
testcase_60 | AC | 6 ms
6,816 KB |
testcase_61 | AC | 9 ms
6,820 KB |
testcase_62 | AC | 7 ms
6,816 KB |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | AC | 7 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define int ll #define rng(i, a, b) for (int i = int(a); i < int(b); i++) #define rep(i, b) rng(i, 0, b) #define ALL(a) (a).begin(), (a).end() template <class t, class u> void chmax(t& a, u b) { if (a < b) a = b; } template <class t, class u> void chmin(t& a, u b) { if (b < a) a = b; } template <class t> using vc = vector<t>; template <class t> using vvc = vc<vc<t>>; using pi = pair<int, int>; using vi = vc<int>; using uint = unsigned; using ull = unsigned long long; int popcount(signed t) { return __builtin_popcount(t); } int popcount(ll t) { return __builtin_popcountll(t); } bool ispow2(int i) { return i && (i & -i) == i; } ll mask(int i) { return (ll(1) << i) - 1; } int lcm(int a, int b) { return a / __gcd(a, b) * b; } int n; vc<int> a(200200); signed main() { cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(20); cin >> n; rep(i, n) cin >> a[i]; bool alice = true; for (int i = n - 1; i >= 0; i--) { if (a[i] == 1) alice = false; else alice = true; } cout << (alice ? "Alice" : "Bob") << endl; }