結果

問題 No.2044 Infinite Nim
ユーザー dachengzdachengz
提出日時 2022-11-16 07:10:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 76,472 KB
最終ジャッジ日時 2024-09-17 05:19:54
合計ジャッジ時間 2,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,952 KB
testcase_01 AC 37 ms
52,592 KB
testcase_02 AC 37 ms
52,572 KB
testcase_03 AC 36 ms
52,420 KB
testcase_04 AC 33 ms
53,404 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 34 ms
51,940 KB
testcase_08 AC 32 ms
52,684 KB
testcase_09 AC 34 ms
52,124 KB
testcase_10 AC 34 ms
52,464 KB
testcase_11 AC 33 ms
52,484 KB
testcase_12 AC 32 ms
52,636 KB
testcase_13 AC 47 ms
66,912 KB
testcase_14 AC 44 ms
64,420 KB
testcase_15 AC 43 ms
64,056 KB
testcase_16 AC 42 ms
64,420 KB
testcase_17 AC 47 ms
70,060 KB
testcase_18 AC 40 ms
63,028 KB
testcase_19 AC 42 ms
63,824 KB
testcase_20 AC 46 ms
67,380 KB
testcase_21 AC 51 ms
71,424 KB
testcase_22 AC 43 ms
67,560 KB
testcase_23 AC 43 ms
64,756 KB
testcase_24 WA -
testcase_25 AC 44 ms
64,608 KB
testcase_26 WA -
testcase_27 AC 42 ms
63,696 KB
testcase_28 AC 53 ms
73,180 KB
testcase_29 WA -
testcase_30 AC 48 ms
69,760 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 54 ms
76,472 KB
testcase_36 AC 35 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = map(int, input().split())

cnt_n1 = 0
xorval = 0
for a in A:
	if a == -1:
		cnt_n1 += 1
	else:
		xorval ^= a

if cnt_n1 == 0:
	print("First" if xorval else "Second")
else:
	print("First")
0