結果

問題 No.3090 NimNim
ユーザー rgnerdplayer
提出日時 2025-05-07 12:04:11
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 3,695 ms
コンパイル使用メモリ 275,688 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-05-07 12:04:18
合計ジャッジ時間 7,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using i64 = long long;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    auto solve = [&]() {
        int n, m;
        cin >> n >> m;

        vector<int> a(n), b(m);
        int sa = 0, sb = 0;
        for (int i = 0; i < n; i++) {
            cin >> a[i];
            sa ^= a[i];
        }
        for (int i = 0; i < m; i++) {
            cin >> b[i];
            sb ^= b[i];
        }

        if (a == vector(n, 1)) {
            if (n % 2 == 0) {
                cout << "First" << '\n';
            } else {
                cout << (sb != 0 ? "First" : "Second") << '\n';
            }
        } else {
            cout << (sa != 0 ? "First" : "Second") << '\n';
        }
    };
    
    solve();
    
    return 0;
}
0