結果

問題 No.1945 Go Push!
ユーザー roarisroaris
提出日時 2022-05-21 00:12:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 81,544 KB
実行使用メモリ 98,572 KB
最終ジャッジ日時 2023-10-20 15:05:57
合計ジャッジ時間 3,223 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,432 KB
testcase_01 AC 40 ms
53,432 KB
testcase_02 AC 40 ms
53,432 KB
testcase_03 AC 46 ms
61,984 KB
testcase_04 AC 43 ms
55,480 KB
testcase_05 AC 43 ms
55,480 KB
testcase_06 AC 42 ms
55,480 KB
testcase_07 AC 42 ms
55,480 KB
testcase_08 AC 55 ms
72,648 KB
testcase_09 AC 58 ms
75,804 KB
testcase_10 AC 77 ms
96,724 KB
testcase_11 AC 57 ms
75,816 KB
testcase_12 AC 67 ms
86,076 KB
testcase_13 AC 70 ms
90,488 KB
testcase_14 AC 45 ms
61,984 KB
testcase_15 AC 54 ms
72,684 KB
testcase_16 AC 54 ms
71,664 KB
testcase_17 AC 53 ms
71,632 KB
testcase_18 AC 62 ms
78,648 KB
testcase_19 AC 80 ms
97,568 KB
testcase_20 AC 75 ms
93,004 KB
testcase_21 AC 60 ms
78,592 KB
testcase_22 AC 99 ms
98,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
A = list(map(int, input().split()))
X = 0

for Ai in A:
    X ^= Ai

if X==0:
    print('Second')
else:
    print('First')
0