結果

問題 No.2044 Infinite Nim
ユーザー ikomaikoma
提出日時 2022-08-19 23:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 82,532 KB
最終ジャッジ日時 2024-10-09 06:08:54
合計ジャッジ時間 3,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,364 KB
testcase_01 AC 37 ms
52,444 KB
testcase_02 AC 37 ms
53,600 KB
testcase_03 AC 36 ms
53,104 KB
testcase_04 AC 36 ms
52,668 KB
testcase_05 AC 37 ms
52,280 KB
testcase_06 AC 37 ms
51,828 KB
testcase_07 AC 36 ms
51,868 KB
testcase_08 AC 37 ms
52,476 KB
testcase_09 AC 37 ms
52,336 KB
testcase_10 AC 36 ms
53,216 KB
testcase_11 AC 38 ms
52,664 KB
testcase_12 AC 36 ms
53,308 KB
testcase_13 AC 52 ms
71,284 KB
testcase_14 AC 48 ms
66,808 KB
testcase_15 AC 46 ms
66,256 KB
testcase_16 AC 48 ms
65,456 KB
testcase_17 AC 54 ms
73,700 KB
testcase_18 AC 45 ms
66,072 KB
testcase_19 AC 48 ms
66,212 KB
testcase_20 AC 51 ms
70,552 KB
testcase_21 AC 60 ms
76,652 KB
testcase_22 AC 53 ms
71,524 KB
testcase_23 AC 49 ms
68,252 KB
testcase_24 AC 55 ms
74,268 KB
testcase_25 AC 49 ms
68,548 KB
testcase_26 AC 53 ms
73,668 KB
testcase_27 AC 48 ms
66,536 KB
testcase_28 AC 63 ms
80,936 KB
testcase_29 AC 49 ms
70,260 KB
testcase_30 AC 57 ms
76,360 KB
testcase_31 AC 63 ms
81,476 KB
testcase_32 AC 62 ms
81,924 KB
testcase_33 AC 62 ms
81,024 KB
testcase_34 AC 56 ms
79,056 KB
testcase_35 AC 63 ms
82,532 KB
testcase_36 AC 37 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N=int(input())
A=list(map(int,input().split()))

cntInf = 0
xor = 0
for a in A:
    if a==-1:
        cntInf+=1
    else:
        xor ^= a
if cntInf%2==1:
    print("First")
else:
    print("First" if xor!=0 else "Second")

0