結果

問題 No.2044 Infinite Nim
ユーザー asumo0729asumo0729
提出日時 2022-08-21 18:10:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 84,668 KB
最終ジャッジ日時 2024-10-10 06:18:55
合計ジャッジ時間 3,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,988 KB
testcase_01 AC 36 ms
53,480 KB
testcase_02 AC 36 ms
52,704 KB
testcase_03 AC 36 ms
53,004 KB
testcase_04 AC 36 ms
52,616 KB
testcase_05 AC 35 ms
52,632 KB
testcase_06 AC 35 ms
52,556 KB
testcase_07 AC 37 ms
52,652 KB
testcase_08 AC 37 ms
52,280 KB
testcase_09 AC 37 ms
52,272 KB
testcase_10 AC 37 ms
52,404 KB
testcase_11 AC 37 ms
54,028 KB
testcase_12 AC 37 ms
53,680 KB
testcase_13 AC 52 ms
71,588 KB
testcase_14 AC 48 ms
66,588 KB
testcase_15 AC 46 ms
66,468 KB
testcase_16 AC 47 ms
66,276 KB
testcase_17 AC 54 ms
74,372 KB
testcase_18 AC 46 ms
67,184 KB
testcase_19 AC 47 ms
66,904 KB
testcase_20 AC 51 ms
71,108 KB
testcase_21 AC 57 ms
77,636 KB
testcase_22 AC 51 ms
72,800 KB
testcase_23 AC 48 ms
67,944 KB
testcase_24 AC 56 ms
75,392 KB
testcase_25 AC 47 ms
68,964 KB
testcase_26 AC 53 ms
73,628 KB
testcase_27 AC 47 ms
66,856 KB
testcase_28 AC 60 ms
81,224 KB
testcase_29 AC 50 ms
70,000 KB
testcase_30 AC 56 ms
75,936 KB
testcase_31 AC 62 ms
81,556 KB
testcase_32 AC 61 ms
81,540 KB
testcase_33 AC 62 ms
81,504 KB
testcase_34 AC 56 ms
78,052 KB
testcase_35 AC 62 ms
84,668 KB
testcase_36 AC 37 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
inf = 1; x = 0
for a in A:
    if a == -1:
        inf += 1
    else:
        x ^= a
ans = 'First'
if inf & 1 and x == 0:
    ans = 'Second'
print(ans)
0