結果

問題 No.2024 Xer
ユーザー ShirotsumeShirotsume
提出日時 2022-07-29 21:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 111,788 KB
最終ジャッジ日時 2024-07-19 14:34:43
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,184 KB
testcase_01 AC 35 ms
52,884 KB
testcase_02 AC 35 ms
52,760 KB
testcase_03 AC 34 ms
52,420 KB
testcase_04 AC 34 ms
52,688 KB
testcase_05 AC 33 ms
52,144 KB
testcase_06 AC 34 ms
51,952 KB
testcase_07 AC 270 ms
111,788 KB
testcase_08 AC 110 ms
103,688 KB
testcase_09 AC 280 ms
105,156 KB
testcase_10 AC 114 ms
103,488 KB
testcase_11 AC 110 ms
82,996 KB
testcase_12 AC 186 ms
99,796 KB
testcase_13 AC 193 ms
101,300 KB
testcase_14 AC 255 ms
107,384 KB
testcase_15 AC 133 ms
88,808 KB
testcase_16 AC 204 ms
102,672 KB
testcase_17 AC 125 ms
87,924 KB
testcase_18 AC 116 ms
86,564 KB
testcase_19 AC 265 ms
107,312 KB
testcase_20 AC 187 ms
99,520 KB
testcase_21 AC 284 ms
105,928 KB
testcase_22 AC 282 ms
105,524 KB
testcase_23 AC 284 ms
105,300 KB
testcase_24 AC 284 ms
105,408 KB
testcase_25 AC 37 ms
53,908 KB
testcase_26 AC 47 ms
63,052 KB
testcase_27 AC 44 ms
61,424 KB
testcase_28 AC 37 ms
53,220 KB
testcase_29 AC 42 ms
61,800 KB
testcase_30 AC 43 ms
62,052 KB
testcase_31 AC 44 ms
64,200 KB
testcase_32 AC 43 ms
62,120 KB
testcase_33 AC 43 ms
62,056 KB
testcase_34 AC 36 ms
53,040 KB
testcase_35 AC 35 ms
52,420 KB
testcase_36 AC 44 ms
63,468 KB
testcase_37 AC 44 ms
62,576 KB
testcase_38 AC 45 ms
62,220 KB
testcase_39 AC 37 ms
52,340 KB
testcase_40 AC 38 ms
54,160 KB
testcase_41 AC 44 ms
61,788 KB
testcase_42 AC 47 ms
62,252 KB
testcase_43 AC 42 ms
61,812 KB
testcase_44 AC 43 ms
61,972 KB
testcase_45 AC 96 ms
105,196 KB
testcase_46 AC 53 ms
72,840 KB
testcase_47 AC 95 ms
101,456 KB
testcase_48 AC 34 ms
52,552 KB
testcase_49 AC 36 ms
52,208 KB
testcase_50 AC 34 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
n, x = mi()

a = li()

b = [2 * v + x - 2 * (v & x) for v in a]

a.sort(key = lambda v: 2 * v + x - 2 * (v & x))

ans = 'Yes'
for i in range(n - 1):
    if a[i] < a[i + 1] ^ x and a[i] ^ x < a[i + 1]:
        pass
    else:
        ans = 'No'

print(ans)
0