結果

問題 No.2282 Boxed Nim
ユーザー 森中康介
提出日時 2023-04-28 22:14:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,812 KB
最終ジャッジ日時 2024-11-17 21:09:25
合計ジャッジ時間 2,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

sum = N 
for i in input().split():
    i = int(i)
    if i == 0:
        sum += 1
sum = sum % 2
if sum == 0:
    print('Second')
else:
    print('First')
0