結果
問題 | No.601 Midpoint Erase |
ユーザー | kurenai3110 |
提出日時 | 2017-12-01 00:30:58 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 332 bytes |
コンパイル時間 | 460 ms |
コンパイル使用メモリ | 55,724 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-23 03:12:57 |
合計ジャッジ時間 | 1,957 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <iostream> using namespace std; int C[4]; int main() { int N;cin>>N; for(int i=0;i<N;i++){ int x,y; cin>>x>>y; if(x%2&&y%2)C[0]++; else if(x%2==0 && y%2==0)C[1]++; else if(x%2)C[2]++; else if(y%2)C[3]++; } int cnt=0; for(int i=0;i<4;i++)cnt+=C[i]/2; cout<<(cnt%2?"Alice":"Bob")<<endl; return 0; }