結果

問題 No.2044 Infinite Nim
ユーザー prussian_coderprussian_coder
提出日時 2022-08-19 21:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 84,332 KB
最終ジャッジ日時 2024-10-09 06:02:32
合計ジャッジ時間 3,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,264 KB
testcase_01 AC 37 ms
52,764 KB
testcase_02 AC 38 ms
52,880 KB
testcase_03 AC 36 ms
53,052 KB
testcase_04 AC 37 ms
52,412 KB
testcase_05 AC 37 ms
52,796 KB
testcase_06 AC 38 ms
52,804 KB
testcase_07 AC 36 ms
51,812 KB
testcase_08 AC 36 ms
52,232 KB
testcase_09 AC 36 ms
52,928 KB
testcase_10 AC 37 ms
52,192 KB
testcase_11 AC 38 ms
52,916 KB
testcase_12 AC 36 ms
52,628 KB
testcase_13 AC 53 ms
71,236 KB
testcase_14 AC 49 ms
65,420 KB
testcase_15 AC 46 ms
65,308 KB
testcase_16 AC 47 ms
66,156 KB
testcase_17 AC 55 ms
74,548 KB
testcase_18 AC 47 ms
64,676 KB
testcase_19 AC 46 ms
66,260 KB
testcase_20 AC 51 ms
70,296 KB
testcase_21 AC 57 ms
78,104 KB
testcase_22 AC 52 ms
72,724 KB
testcase_23 AC 48 ms
68,048 KB
testcase_24 AC 54 ms
75,184 KB
testcase_25 AC 49 ms
68,096 KB
testcase_26 AC 54 ms
72,952 KB
testcase_27 AC 46 ms
67,048 KB
testcase_28 AC 61 ms
80,284 KB
testcase_29 AC 50 ms
69,884 KB
testcase_30 AC 55 ms
75,228 KB
testcase_31 AC 63 ms
80,840 KB
testcase_32 AC 62 ms
82,436 KB
testcase_33 AC 62 ms
82,144 KB
testcase_34 AC 58 ms
78,956 KB
testcase_35 AC 63 ms
84,332 KB
testcase_36 AC 37 ms
51,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split() if x!=-1]
a=0
for i in range(len(A)):
	a^=A[i]
if a!=0:
	print("First")
else:
	print("Second")
0