結果

問題 No.2024 Xer
ユーザー AEnAEn
提出日時 2022-09-01 14:34:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 962 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 171,428 KB
最終ジャッジ日時 2024-11-14 05:50:39
合計ジャッジ時間 25,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,140 KB
testcase_01 AC 39 ms
53,536 KB
testcase_02 AC 39 ms
53,416 KB
testcase_03 AC 39 ms
54,300 KB
testcase_04 AC 40 ms
52,464 KB
testcase_05 AC 39 ms
53,368 KB
testcase_06 AC 41 ms
53,984 KB
testcase_07 TLE -
testcase_08 AC 1,673 ms
171,428 KB
testcase_09 AC 389 ms
136,576 KB
testcase_10 AC 1,658 ms
171,340 KB
testcase_11 AC 669 ms
96,888 KB
testcase_12 AC 1,194 ms
115,512 KB
testcase_13 AC 1,380 ms
122,912 KB
testcase_14 TLE -
testcase_15 AC 898 ms
105,076 KB
testcase_16 AC 1,532 ms
126,312 KB
testcase_17 AC 188 ms
94,564 KB
testcase_18 AC 803 ms
102,120 KB
testcase_19 TLE -
testcase_20 AC 256 ms
106,116 KB
testcase_21 AC 387 ms
137,124 KB
testcase_22 AC 391 ms
136,624 KB
testcase_23 AC 391 ms
136,808 KB
testcase_24 AC 392 ms
137,024 KB
testcase_25 AC 54 ms
64,424 KB
testcase_26 AC 69 ms
72,840 KB
testcase_27 AC 115 ms
76,748 KB
testcase_28 AC 69 ms
69,688 KB
testcase_29 AC 61 ms
67,024 KB
testcase_30 AC 74 ms
74,472 KB
testcase_31 AC 81 ms
76,956 KB
testcase_32 AC 137 ms
77,796 KB
testcase_33 AC 72 ms
73,948 KB
testcase_34 AC 49 ms
61,784 KB
testcase_35 AC 40 ms
53,088 KB
testcase_36 AC 72 ms
72,800 KB
testcase_37 AC 73 ms
73,972 KB
testcase_38 AC 82 ms
76,828 KB
testcase_39 AC 52 ms
62,008 KB
testcase_40 AC 66 ms
67,884 KB
testcase_41 AC 116 ms
76,880 KB
testcase_42 AC 71 ms
74,188 KB
testcase_43 AC 123 ms
77,376 KB
testcase_44 AC 130 ms
77,720 KB
testcase_45 AC 339 ms
118,764 KB
testcase_46 AC 121 ms
84,068 KB
testcase_47 AC 266 ms
105,672 KB
testcase_48 AC 41 ms
53,532 KB
testcase_49 AC 41 ms
53,372 KB
testcase_50 AC 41 ms
53,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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')
0