結果
| 問題 | No.2044 Infinite Nim |
| コンテスト | |
| ユーザー |
wattaihei
|
| 提出日時 | 2022-08-20 10:56:08 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 47 ms / 2,000 ms |
| + 274µs | |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 77 ms |
| コンパイル使用メモリ | 81,152 KB |
| 実行使用メモリ | 86,400 KB |
| 最終ジャッジ日時 | 2026-09-12 09:49:42 |
| 合計ジャッジ時間 | 3,162 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
import sys
input = sys.stdin.readline
N = int(input())
A = list(map(int, input().rstrip().split()))
x = 0
c = 0
for a in A:
if a == -1:
c ^= 1
else:
x ^= a
print("First" if x > 0 or c == 1 else "Second")
wattaihei