結果

問題 No.2044 Infinite Nim
ユーザー baLoon8128baLoon8128
提出日時 2022-08-19 22:24:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 3,623 ms
コンパイル使用メモリ 229,148 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 06:07:56
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

bool solve() {
    int n;
    cin >> n;
    int s = 0, c = 0;
    rep(i, n) {
        int a;
        cin >> a;
        if (a < 0) {
            c ^= 1;
        } else {
            s ^= a;
        }
    }
    if (c) return true;
    return s > 0;
}
int main() {
    cout << (solve() ? "First" : "Second") << '\n';
    return 0;
}
0