結果

問題 No.2282 Boxed Nim
ユーザー achapiachapi
提出日時 2023-04-29 20:41:06
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 202,708 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 13:50:01
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; i++){
		cin >> a[i];
	}
	if (count(a.begin(), a.end(), 0) % 2 == 1){
		cout << "First" << endl;
	}else{
		cout << "Second" << endl;
	}
}
0