結果

問題 No.1945 Go Push!
ユーザー roarisroaris
提出日時 2022-05-21 00:12:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 98,860 KB
最終ジャッジ日時 2024-09-20 10:35:51
合計ジャッジ時間 2,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 45 ms
60,672 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 40 ms
53,888 KB
testcase_08 AC 56 ms
72,836 KB
testcase_09 AC 64 ms
74,624 KB
testcase_10 AC 88 ms
97,280 KB
testcase_11 AC 64 ms
74,496 KB
testcase_12 AC 75 ms
86,144 KB
testcase_13 AC 82 ms
89,216 KB
testcase_14 AC 51 ms
61,568 KB
testcase_15 AC 62 ms
72,960 KB
testcase_16 AC 60 ms
71,424 KB
testcase_17 AC 60 ms
71,552 KB
testcase_18 AC 67 ms
78,592 KB
testcase_19 AC 87 ms
97,664 KB
testcase_20 AC 82 ms
93,184 KB
testcase_21 AC 68 ms
78,336 KB
testcase_22 AC 106 ms
98,860 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