結果
| 問題 | No.2282 Boxed Nim |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-28 22:23:01 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 351 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 25,372 KB |
| 最終ジャッジ日時 | 2026-05-12 15:15:04 |
| 合計ジャッジ時間 | 3,549 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 6 WA * 11 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
xor_sum = 0
for a in A:
xor_sum ^= a
if xor_sum == 0:
print("Second")
else:
print("First")