結果
問題 | No.2059 Odd Move Nim |
ユーザー | publfl2 |
提出日時 | 2022-08-26 22:20:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 213 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 11:06:56 |
合計ジャッジ時間 | 1,502 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 21 |
ソースコード
#include <stdio.h> int x[200010]; int main() { int a; scanf("%d",&a); for(int i=1;i<=a;i++) scanf("%d",&x[i]); int s = 0; for(int i=2;i<=a;i+=2) s ^= x[i]; if(s!=0) printf("Alice"); else printf("Bob"); }