結果

問題 No.1945 Go Push!
ユーザー ntuda
提出日時 2025-02-11 19:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,836 KB
最終ジャッジ日時 2025-02-11 19:46:19
合計ジャッジ時間 3,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
x = 0
for a in A:
    x ^= a
if x:
    print("First")
else:
    print("Second")
0