結果

問題 No.2282 Boxed Nim
ユーザー 👑 rin204rin204
提出日時 2024-04-29 21:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 83,976 KB
最終ジャッジ日時 2024-11-19 04:33:47
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,432 KB
testcase_01 AC 38 ms
53,216 KB
testcase_02 AC 39 ms
53,552 KB
testcase_03 AC 39 ms
53,112 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 38 ms
53,208 KB
testcase_06 AC 38 ms
52,368 KB
testcase_07 AC 39 ms
52,060 KB
testcase_08 AC 38 ms
53,000 KB
testcase_09 AC 63 ms
82,996 KB
testcase_10 AC 63 ms
82,484 KB
testcase_11 AC 66 ms
83,360 KB
testcase_12 AC 65 ms
83,172 KB
testcase_13 AC 64 ms
82,332 KB
testcase_14 AC 59 ms
76,668 KB
testcase_15 AC 59 ms
77,500 KB
testcase_16 AC 59 ms
77,012 KB
testcase_17 AC 59 ms
78,132 KB
testcase_18 AC 59 ms
76,956 KB
testcase_19 AC 63 ms
83,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
z = A.count(0)
if z % 2 == 0:
    print("Second")
else:
    print("First")
0