結果

問題 No.2282 Boxed Nim
ユーザー 森中康介森中康介
提出日時 2023-04-28 22:12:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,796 KB
最終ジャッジ日時 2024-04-28 23:43:29
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 WA -
testcase_04 AC 31 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 80 ms
18,364 KB
testcase_10 AC 78 ms
18,488 KB
testcase_11 AC 79 ms
18,488 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
13,012 KB
testcase_15 WA -
testcase_16 AC 79 ms
13,016 KB
testcase_17 WA -
testcase_18 AC 75 ms
13,140 KB
testcase_19 AC 80 ms
18,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

sum = N 
for i in input().split():
    i = int(i)
    if i == 0:
        sum += 1
sum = sum % 2
if sum == 0:
    print('Second')
else:
    print('First')
0