結果

問題 No.2044 Infinite Nim
ユーザー 👑 rin204rin204
提出日時 2022-08-19 21:43:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-10-08 08:01:48
合計ジャッジ時間 3,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 WA -
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 37 ms
51,456 KB
testcase_11 AC 36 ms
51,584 KB
testcase_12 AC 36 ms
51,456 KB
testcase_13 AC 83 ms
75,392 KB
testcase_14 AC 50 ms
69,632 KB
testcase_15 AC 48 ms
66,688 KB
testcase_16 AC 50 ms
68,736 KB
testcase_17 AC 66 ms
83,712 KB
testcase_18 AC 49 ms
66,560 KB
testcase_19 AC 49 ms
67,072 KB
testcase_20 AC 58 ms
75,776 KB
testcase_21 AC 70 ms
86,912 KB
testcase_22 AC 57 ms
74,112 KB
testcase_23 AC 51 ms
69,376 KB
testcase_24 WA -
testcase_25 AC 54 ms
73,088 KB
testcase_26 WA -
testcase_27 AC 48 ms
67,200 KB
testcase_28 AC 71 ms
87,296 KB
testcase_29 WA -
testcase_30 AC 64 ms
79,360 KB
testcase_31 AC 66 ms
82,176 KB
testcase_32 AC 64 ms
82,560 KB
testcase_33 AC 65 ms
82,176 KB
testcase_34 AC 59 ms
79,616 KB
testcase_35 AC 62 ms
83,328 KB
testcase_36 AC 36 ms
51,712 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:
    cnt = {}
    for a in A:
        cnt[a] = cnt.get(a, 0) + 1
    if all(not v & 1 for v in cnt.values()):
        print("Second")
    else:
        print("First")
0