結果

問題 No.2044 Infinite Nim
ユーザー 👑 rin204rin204
提出日時 2022-08-19 21:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 84,156 KB
最終ジャッジ日時 2024-10-09 06:02:40
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,592 KB
testcase_01 AC 37 ms
52,276 KB
testcase_02 AC 37 ms
52,956 KB
testcase_03 AC 37 ms
51,872 KB
testcase_04 AC 37 ms
52,052 KB
testcase_05 AC 37 ms
52,532 KB
testcase_06 AC 37 ms
52,496 KB
testcase_07 AC 37 ms
53,060 KB
testcase_08 AC 37 ms
52,268 KB
testcase_09 AC 37 ms
52,268 KB
testcase_10 AC 36 ms
53,076 KB
testcase_11 AC 37 ms
52,728 KB
testcase_12 AC 37 ms
52,336 KB
testcase_13 AC 52 ms
69,932 KB
testcase_14 AC 47 ms
64,880 KB
testcase_15 AC 46 ms
67,240 KB
testcase_16 AC 44 ms
65,200 KB
testcase_17 AC 53 ms
72,616 KB
testcase_18 AC 46 ms
67,000 KB
testcase_19 AC 45 ms
66,372 KB
testcase_20 AC 49 ms
69,820 KB
testcase_21 AC 58 ms
77,740 KB
testcase_22 AC 49 ms
71,324 KB
testcase_23 AC 47 ms
68,228 KB
testcase_24 AC 56 ms
76,192 KB
testcase_25 AC 47 ms
65,984 KB
testcase_26 AC 54 ms
74,200 KB
testcase_27 AC 45 ms
65,084 KB
testcase_28 AC 59 ms
79,160 KB
testcase_29 AC 50 ms
70,348 KB
testcase_30 AC 54 ms
74,176 KB
testcase_31 AC 66 ms
82,464 KB
testcase_32 AC 65 ms
81,976 KB
testcase_33 AC 66 ms
82,720 KB
testcase_34 AC 57 ms
78,064 KB
testcase_35 AC 66 ms
84,156 KB
testcase_36 AC 36 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
c = A.count(-1)
if c == 0:
    x = 0
    for a in A:
        x ^= a
    if x == 0:
        print("Second")
    else:
        print("First")
elif c & 1:
    print("First")
else:
    x = 0
    for a in A:
        if a != -1:
            x ^= a
    if x == 0:
        print("Second")
    else:
        print("First")
0