結果

問題 No.2282 Boxed Nim
ユーザー tnakao0123tnakao0123
提出日時 2023-05-19 15:49:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 40,960 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-17 22:46:06
合計ジャッジ時間 1,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2282.cc:  No.2282 Boxed Nim - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

/* typedef */

/* global variables */

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  int zn = 0;
  for (int i = 0; i < n; i++) {
    int ai;
    scanf("%d", &ai);
    if (ai == 0) zn++;
  }

  if (zn & 1) puts("First");
  else puts("Second");
  return 0;
}
0