結果

問題 No.2024 Xer
ユーザー AEnAEn
提出日時 2022-09-01 14:46:03
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,226 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 170,016 KB
最終ジャッジ日時 2024-11-14 05:58:33
合計ジャッジ時間 22,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,056 KB
testcase_01 AC 41 ms
55,712 KB
testcase_02 AC 42 ms
54,636 KB
testcase_03 AC 42 ms
54,812 KB
testcase_04 AC 41 ms
54,748 KB
testcase_05 AC 43 ms
56,148 KB
testcase_06 AC 42 ms
56,260 KB
testcase_07 TLE -
testcase_08 AC 1,618 ms
170,016 KB
testcase_09 AC 358 ms
134,972 KB
testcase_10 AC 1,611 ms
169,568 KB
testcase_11 AC 583 ms
96,664 KB
testcase_12 AC 1,024 ms
114,584 KB
testcase_13 AC 1,204 ms
120,436 KB
testcase_14 TLE -
testcase_15 AC 818 ms
105,420 KB
testcase_16 AC 1,286 ms
125,392 KB
testcase_17 AC 166 ms
94,528 KB
testcase_18 AC 690 ms
102,848 KB
testcase_19 TLE -
testcase_20 AC 240 ms
105,036 KB
testcase_21 AC 369 ms
135,020 KB
testcase_22 AC 377 ms
134,916 KB
testcase_23 AC 366 ms
135,292 KB
testcase_24 AC 359 ms
134,516 KB
testcase_25 AC 54 ms
66,600 KB
testcase_26 AC 71 ms
75,132 KB
testcase_27 AC 116 ms
78,320 KB
testcase_28 AC 67 ms
71,444 KB
testcase_29 AC 60 ms
70,128 KB
testcase_30 AC 77 ms
77,492 KB
testcase_31 AC 78 ms
77,472 KB
testcase_32 AC 131 ms
78,876 KB
testcase_33 AC 74 ms
74,568 KB
testcase_34 AC 53 ms
64,792 KB
testcase_35 AC 44 ms
54,892 KB
testcase_36 AC 74 ms
75,008 KB
testcase_37 AC 78 ms
77,484 KB
testcase_38 AC 82 ms
77,596 KB
testcase_39 AC 53 ms
63,636 KB
testcase_40 AC 67 ms
70,240 KB
testcase_41 AC 118 ms
78,244 KB
testcase_42 AC 78 ms
77,400 KB
testcase_43 AC 125 ms
78,284 KB
testcase_44 AC 132 ms
78,424 KB
testcase_45 AC 307 ms
117,032 KB
testcase_46 AC 119 ms
84,484 KB
testcase_47 AC 251 ms
104,564 KB
testcase_48 AC 43 ms
54,696 KB
testcase_49 AC 41 ms
55,432 KB
testcase_50 AC 41 ms
56,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    import random
    from heapq import heappop, heappush
    input = sys.stdin.readline

    N, X = map(int, input().split())
    A = list(map(int, input().split()))
    h = []
    for i in range(N):
        heappush(h, (A[i], 0, i))
        heappush(h, (A[i]^X, 1, i))
    res1, res2 = [], []
    for i in range(2*N):
        n, w, idx = heappop(h)
        l1, l2 = len(res1), len(res2)
        w1, w2 = (l1+1)%2, l2%2
        if w1==w2:
            if w1!=w:
                exit(print('No'))
            else:
                if l1>l2:
                    if res1[l2] == idx:
                        res2.append(idx)
                    else:
                        res1.append(idx)
                else:
                    if res2[l1] == idx:
                        res1.append(idx)
                    else:
                        res2.append(idx)
        else:
            if w1 == w:
                res1.append(idx)
            else:
                res2.append(idx)
    if len(res1) != len(res2):
        exit(print("No"))
    else:
        for i in range(N):
            if res1[i] != res2[i]:
                exit(print("No"))
        print('Yes')
if __name__=='__main__':
    main()
0