結果

問題 No.2044 Infinite Nim
ユーザー tamatotamato
提出日時 2022-08-19 21:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 83,116 KB
最終ジャッジ日時 2024-10-09 06:05:12
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,744 KB
testcase_01 AC 37 ms
52,556 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
52,004 KB
testcase_04 AC 37 ms
53,516 KB
testcase_05 AC 38 ms
52,520 KB
testcase_06 AC 37 ms
52,628 KB
testcase_07 AC 39 ms
52,512 KB
testcase_08 AC 37 ms
52,856 KB
testcase_09 AC 37 ms
53,504 KB
testcase_10 AC 38 ms
52,268 KB
testcase_11 AC 38 ms
52,196 KB
testcase_12 AC 38 ms
52,388 KB
testcase_13 AC 52 ms
71,252 KB
testcase_14 AC 48 ms
67,476 KB
testcase_15 AC 46 ms
65,668 KB
testcase_16 AC 46 ms
67,212 KB
testcase_17 AC 55 ms
74,148 KB
testcase_18 AC 46 ms
66,088 KB
testcase_19 AC 47 ms
67,128 KB
testcase_20 AC 52 ms
70,756 KB
testcase_21 AC 60 ms
79,028 KB
testcase_22 AC 52 ms
72,992 KB
testcase_23 AC 47 ms
68,268 KB
testcase_24 AC 56 ms
75,176 KB
testcase_25 AC 48 ms
67,540 KB
testcase_26 AC 53 ms
73,604 KB
testcase_27 AC 47 ms
66,452 KB
testcase_28 AC 59 ms
80,420 KB
testcase_29 AC 50 ms
69,084 KB
testcase_30 AC 57 ms
76,920 KB
testcase_31 AC 60 ms
83,116 KB
testcase_32 AC 62 ms
81,220 KB
testcase_33 AC 62 ms
81,772 KB
testcase_34 AC 58 ms
77,604 KB
testcase_35 AC 62 ms
82,192 KB
testcase_36 AC 38 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))

    x = 0
    cnt_inf = 0
    for a in A:
        if a == -1:
            cnt_inf += 1
        else:
            x ^= a
    if cnt_inf & 1:
        print("First")
    else:
        if x:
            print("First")
        else:
            print("Second")



if __name__ == '__main__':
    main()
0