結果

問題 No.2282 Boxed Nim
ユーザー Alex WiceAlex Wice
提出日時 2023-04-28 22:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 84,564 KB
最終ジャッジ日時 2024-11-17 21:28:06
合計ジャッジ時間 1,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,236 KB
testcase_01 AC 30 ms
52,568 KB
testcase_02 AC 30 ms
52,452 KB
testcase_03 AC 30 ms
51,548 KB
testcase_04 AC 30 ms
51,920 KB
testcase_05 AC 29 ms
52,652 KB
testcase_06 AC 31 ms
52,176 KB
testcase_07 AC 29 ms
52,752 KB
testcase_08 AC 30 ms
51,836 KB
testcase_09 AC 53 ms
83,420 KB
testcase_10 AC 54 ms
84,320 KB
testcase_11 AC 57 ms
83,028 KB
testcase_12 AC 54 ms
83,992 KB
testcase_13 AC 54 ms
83,556 KB
testcase_14 AC 51 ms
79,640 KB
testcase_15 AC 51 ms
79,160 KB
testcase_16 AC 51 ms
78,736 KB
testcase_17 AC 51 ms
79,772 KB
testcase_18 AC 51 ms
79,364 KB
testcase_19 AC 54 ms
84,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
g = 0
for x in a:
	g ^= 1 - bool(x)
print("First" if g else "Second")
0