結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2022-05-20 21:37:10 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 85 ms / 2,000 ms |
| + 276µs | |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 251 ms |
| コンパイル使用メモリ | 96,080 KB |
| 実行使用メモリ | 117,000 KB |
| 最終ジャッジ日時 | 2026-08-31 15:42:22 |
| 合計ジャッジ時間 | 3,515 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
n=int(input())
a=list(map(int,input().split()))
xor=0
for i in a:
xor^=i
if xor==0:
print('Second')
else:
print('First')
とりゐ