結果

問題 No.1945 Go Push!
ユーザー abababab
提出日時 2022-05-20 21:55:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 11,772 KB
実行使用メモリ 32,576 KB
最終ジャッジ日時 2023-10-20 12:30:00
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,108 KB
testcase_01 AC 28 ms
10,108 KB
testcase_02 AC 28 ms
10,108 KB
testcase_03 AC 29 ms
10,320 KB
testcase_04 AC 28 ms
10,144 KB
testcase_05 AC 28 ms
10,140 KB
testcase_06 AC 28 ms
10,196 KB
testcase_07 AC 28 ms
10,164 KB
testcase_08 AC 51 ms
15,616 KB
testcase_09 AC 54 ms
16,292 KB
testcase_10 AC 95 ms
26,776 KB
testcase_11 AC 53 ms
16,460 KB
testcase_12 AC 74 ms
21,952 KB
testcase_13 AC 82 ms
23,540 KB
testcase_14 AC 31 ms
10,904 KB
testcase_15 AC 52 ms
15,884 KB
testcase_16 AC 48 ms
15,292 KB
testcase_17 AC 50 ms
14,912 KB
testcase_18 AC 62 ms
18,540 KB
testcase_19 AC 98 ms
28,036 KB
testcase_20 AC 85 ms
25,140 KB
testcase_21 AC 62 ms
18,484 KB
testcase_22 AC 111 ms
32,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

xor = 0
for a in A:
    xor ^= a

print('First' if xor else 'Second')
0