結果
| 問題 |
No.1506 Unbalanced Pocky Game
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2021-05-14 22:30:56 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 67 ms / 2,000 ms |
| コード長 | 554 bytes |
| コンパイル時間 | 2,247 ms |
| コンパイル使用メモリ | 194,608 KB |
| 最終ジャッジ日時 | 2025-01-21 11:37:05 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 63 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;
#include <bits/stdc++.h>
using namespace std;
int main(){
ll n;
cin>>n;
vector<ll> A(n);
rep(i,n) cin>>A[i];
if(n==1){
cout<<"Alice"<<endl;
return 0;
}
int cnt=0;
for(int i=n-1;i>=0;i--){
if(A[i]==1) cnt++;
else break;
}
if(cnt==n){
if(cnt%2==0) cout<<"Bob"<<endl;
else cout<<"Alice"<<endl;
return 0;
}
if(cnt%2==1) cout<<"Bob"<<endl;
else cout<<"Alice"<<endl;
return 0;
}
umezo