結果
問題 |
No.1716 Bonus Nim
|
ユーザー |
![]() |
提出日時 | 2021-10-22 21:41:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 400 bytes |
コンパイル時間 | 1,960 ms |
コンパイル使用メモリ | 174,424 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-23 05:01:18 |
合計ジャッジ時間 | 4,368 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 25 |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0;i<(n);i++) #define RREP(i,n) for(int i=(n-1);i>=0;i--) #define ALL(v) v.begin(),v.end() int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int t;cin>>t; REP(_,t){ int n;cin>>n; int a; REP(_,n)cin>>a; if(n&1)cout<<"Alice"<<"\n"; else cout<<"Bob"<<"\n"; } }