結果
| 問題 | No.2282 Boxed Nim |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-08-03 22:09:32 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 77 ms / 2,000 ms |
| + 132µs | |
| コード長 | 103 bytes |
| 記録 | |
| コンパイル時間 | 906 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 97,920 KB |
| 最終ジャッジ日時 | 2026-08-03 22:09:39 |
| 合計ジャッジ時間 | 4,245 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
print("First" if A.count(0)%2 == 1 else "Second")
detteiuu