結果

問題 No.1506 Unbalanced Pocky Game
ユーザー karinohitokarinohito
提出日時 2021-05-15 13:47:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,331 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 103,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 04:25:20
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 23 ms
6,940 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 24 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 10 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 24 ms
6,944 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 56 ms
6,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 58 ms
6,940 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 24 ms
6,940 KB
testcase_52 AC 19 ms
6,944 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 6 ms
6,944 KB
testcase_60 WA -
testcase_61 AC 21 ms
6,944 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <atcoder/all>
#include <iostream>
#include <numeric>
#include <cmath>
#include <limits>
#include <stdio.h>
#include <iomanip>
#include <string> // string, to_string, stoi
#include <vector> // vector
#include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound
#include <utility> // pair, make_pair
#include <tuple> // tuple, make_tuple
#include <cstdint> // int64_t, int*_t
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <cctype> // isupper, islower, isdigit, toupper, tolower
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<pair<ll,double>>>;

vector<pair<ll,ll>> Z;
double dist(ll A,ll B){
    ll dx=Z[A].first-Z[B].first;
    ll dy=Z[A].second-Z[B].second;
    return sqrt(dx*dx+dy*dy);
}

ll mod=1e9+7;
int main() {
   ll N;
   cin>>N;
   vll A(N);
   rep(i,N)cin>>A[i];
   ll k=0;
   if(A[N-1]!=1)k++;
    rep(i,N-1){
        
    }

    cout<<(A[N-1]==1?"Alice":"Bob")<<endl;
    

}
0