結果

問題 No.2044 Infinite Nim
ユーザー gr1msl3y
提出日時 2022-08-25 00:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-10-12 08:37:50
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
gr = 0
ct = 0
for a in A:
    if a > 0:
        gr ^= a
    else:
        ct += 1

if gr:
    print('First')
else:
    print('First' if ct % 2 else 'Second')
0