結果
問題 | No.2282 Boxed Nim |
ユーザー | anonymously |
提出日時 | 2023-04-28 21:48:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 584 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 165,432 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 20:47:23 |
合計ジャッジ時間 | 2,646 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> using namespace std; /* 最適戦略 ・石の入っていない箱の蓋を開ける ・石の入っている箱の蓋が開いたら、中の石を全て取る ⇒Ai=0を1カウント、Ai>0を2カウントとして、 奇数ならば先手(First)の勝ち、偶数ならば後手(Second)の勝ち ⇒Ai=0となるiの個数が奇数ならば先手(First)の勝ち、偶数ならば後手(Second)の勝ち */ int main(){ int n; cin>>n; int x=0; while(n--){ int a; cin>>a; if(a==0)x++; } cout<<((x%2)?"First":"Second")<<endl; return 0; }