結果

問題 No.2282 Boxed Nim
ユーザー 森中康介森中康介
提出日時 2023-04-28 22:16:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,156 KB
最終ジャッジ日時 2024-11-17 21:13:31
合計ジャッジ時間 2,101 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,096 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 59 ms
76,484 KB
testcase_10 AC 62 ms
76,288 KB
testcase_11 AC 60 ms
76,288 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
71,424 KB
testcase_15 WA -
testcase_16 AC 59 ms
72,320 KB
testcase_17 WA -
testcase_18 AC 58 ms
72,064 KB
testcase_19 AC 61 ms
77,056 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