結果

問題 No.2044 Infinite Nim
ユーザー H20H20
提出日時 2022-08-19 22:59:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 85,332 KB
最終ジャッジ日時 2024-10-08 10:18:32
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,552 KB
testcase_01 AC 34 ms
53,020 KB
testcase_02 AC 36 ms
51,824 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 34 ms
52,360 KB
testcase_05 AC 35 ms
52,264 KB
testcase_06 AC 35 ms
53,716 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
52,160 KB
testcase_10 AC 35 ms
52,472 KB
testcase_11 AC 35 ms
52,404 KB
testcase_12 AC 34 ms
52,400 KB
testcase_13 AC 49 ms
71,492 KB
testcase_14 AC 45 ms
67,936 KB
testcase_15 WA -
testcase_16 AC 43 ms
66,596 KB
testcase_17 AC 50 ms
74,668 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 48 ms
71,584 KB
testcase_21 WA -
testcase_22 AC 49 ms
71,648 KB
testcase_23 AC 45 ms
68,748 KB
testcase_24 AC 53 ms
76,128 KB
testcase_25 AC 44 ms
67,376 KB
testcase_26 AC 52 ms
74,932 KB
testcase_27 AC 45 ms
66,464 KB
testcase_28 AC 60 ms
80,844 KB
testcase_29 AC 47 ms
70,280 KB
testcase_30 AC 52 ms
76,200 KB
testcase_31 AC 60 ms
81,848 KB
testcase_32 AC 59 ms
82,428 KB
testcase_33 AC 60 ms
82,812 KB
testcase_34 AC 55 ms
78,280 KB
testcase_35 AC 60 ms
85,332 KB
testcase_36 AC 35 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
infCnt = 0
xor = 0
for a in A:
    if a==-1:
        infCnt+=1
    else:
        xor^=a
if infCnt==0:
    if xor==0:
        print('Second')
    else:
        print('First')
else:
    if infCnt%2==0:
        print('Second')
    else:
        print('First')
0