結果

問題 No.2024 Xer
ユーザー とりゐとりゐ
提出日時 2022-08-08 15:13:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,704 KB
実行使用メモリ 135,800 KB
最終ジャッジ日時 2024-09-19 01:13:23
合計ジャッジ時間 16,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 309 ms
119,872 KB
testcase_08 AC 252 ms
128,360 KB
testcase_09 AC 926 ms
126,204 KB
testcase_10 AC 495 ms
130,420 KB
testcase_11 AC 205 ms
86,416 KB
testcase_12 AC 678 ms
101,324 KB
testcase_13 AC 590 ms
104,028 KB
testcase_14 AC 413 ms
119,348 KB
testcase_15 AC 234 ms
90,308 KB
testcase_16 AC 608 ms
107,144 KB
testcase_17 AC 459 ms
92,208 KB
testcase_18 AC 223 ms
89,432 KB
testcase_19 AC 371 ms
116,124 KB
testcase_20 AC 271 ms
98,544 KB
testcase_21 AC 950 ms
135,800 KB
testcase_22 AC 946 ms
133,620 KB
testcase_23 AC 922 ms
134,768 KB
testcase_24 AC 928 ms
132,860 KB
testcase_25 AC 94 ms
76,288 KB
testcase_26 AC 145 ms
77,184 KB
testcase_27 AC 119 ms
76,672 KB
testcase_28 AC 86 ms
73,984 KB
testcase_29 AC 110 ms
76,288 KB
testcase_30 AC 149 ms
77,952 KB
testcase_31 AC 151 ms
77,184 KB
testcase_32 AC 158 ms
77,184 KB
testcase_33 AC 136 ms
77,440 KB
testcase_34 AC 92 ms
75,648 KB
testcase_35 AC 48 ms
58,880 KB
testcase_36 AC 128 ms
77,312 KB
testcase_37 AC 150 ms
77,440 KB
testcase_38 AC 137 ms
77,056 KB
testcase_39 AC 54 ms
61,056 KB
testcase_40 AC 78 ms
70,656 KB
testcase_41 AC 119 ms
76,672 KB
testcase_42 AC 125 ms
76,800 KB
testcase_43 AC 131 ms
77,056 KB
testcase_44 AC 134 ms
76,928 KB
testcase_45 AC 748 ms
114,124 KB
testcase_46 AC 323 ms
82,304 KB
testcase_47 AC 281 ms
99,912 KB
testcase_48 AC 40 ms
52,352 KB
testcase_49 AC 41 ms
52,224 KB
testcase_50 AC 42 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def compare(a,b):
  # 比較関数 (a<=b)
  
  if min(a,a^x)<=min(b,b^x):
    return True
  else:
    return False


def merge(l, r):
    new = []
    ln = 0
    rn = 0
    while ln < len(l) and rn < len(r):
        if compare(l[ln],r[rn]):
            new.append(l[ln])
            ln += 1
        else:
            new.append(r[rn])
            rn += 1
    for i in range(ln, len(l)):
        new.append(l[i])
    for i in range(rn, len(r)):
        new.append(r[i])
    return new
 
def MergeSort(l):
    if len(l) == 0:
        return []
    if len(l) == 1:
        return l
    else:
        a = l[:len(l)//2]
        b = l[len(l)//2:]
        return merge(MergeSort(a), MergeSort(b))

n,x=map(int,input().split())
a=list(map(int,input().split()))
a=MergeSort(a)
for i in range(n-1):
  if a[i]<a[i+1]^x and a[i]^x<a[i+1]:
    pass
  else:
    print('No')
    exit()
print('Yes')
0