結果
| 問題 | No.2282 Boxed Nim |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-05 12:22:08 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 2,000 ms |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 158 ms |
| コンパイル使用メモリ | 85,308 KB |
| 実行使用メモリ | 169,024 KB |
| 最終ジャッジ日時 | 2026-04-02 14:51:05 |
| 合計ジャッジ時間 | 1,645 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
zero = A.count(0)
if zero % 2 == 1:
print('First')
else:
print('Second')