結果

問題 No.1945 Go Push!
ユーザー pitPpitP
提出日時 2022-05-20 22:15:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 11,760 KB
実行使用メモリ 31,864 KB
最終ジャッジ日時 2023-10-20 12:59:07
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,104 KB
testcase_01 AC 27 ms
10,104 KB
testcase_02 AC 27 ms
10,104 KB
testcase_03 AC 28 ms
10,308 KB
testcase_04 AC 27 ms
10,140 KB
testcase_05 AC 28 ms
10,136 KB
testcase_06 AC 29 ms
10,180 KB
testcase_07 AC 28 ms
10,156 KB
testcase_08 AC 50 ms
15,640 KB
testcase_09 AC 50 ms
16,304 KB
testcase_10 AC 94 ms
26,792 KB
testcase_11 AC 53 ms
16,332 KB
testcase_12 AC 76 ms
21,668 KB
testcase_13 AC 83 ms
23,564 KB
testcase_14 AC 32 ms
10,844 KB
testcase_15 AC 51 ms
15,744 KB
testcase_16 AC 46 ms
15,008 KB
testcase_17 AC 49 ms
14,932 KB
testcase_18 AC 61 ms
18,560 KB
testcase_19 AC 95 ms
27,928 KB
testcase_20 AC 88 ms
25,020 KB
testcase_21 AC 62 ms
18,420 KB
testcase_22 AC 116 ms
31,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
boo = 0
for num in a:
    boo = boo^num

if boo:
    print("First")
else:
    print("Second")
0