結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2025-02-11 19:46:16 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 65 ms / 2,000 ms |
| コード長 | 132 bytes |
| 記録 | |
| コンパイル時間 | 446 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 109,056 KB |
| 最終ジャッジ日時 | 2026-06-30 02:54:02 |
| 合計ジャッジ時間 | 2,882 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
x = 0
for a in A:
x ^= a
if x:
print("First")
else:
print("Second")
ntuda