結果

問題 No.2282 Boxed Nim
ユーザー lam6er
提出日時 2025-03-20 20:19:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,772 KB
実行使用メモリ 88,760 KB
最終ジャッジ日時 2025-03-20 20:20:07
合計ジャッジ時間 2,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
count = sum(1 for x in a if x == 0)
print("First" if count % 2 == 1 else "Second")
0