結果

問題 No.2044 Infinite Nim
ユーザー satama6
提出日時 2022-10-18 23:05:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,636 KB
最終ジャッジ日時 2024-06-29 05:09:46
合計ジャッジ時間 3,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

grundy = 0
cnt = 0

for a in A:
    if a == -1:
        cnt += 1
    else:
        grundy ^= a

if cnt & 1:
    print('First')
elif grundy > 0:
    print('First')
else:
    print('Second')
    
0