結果

問題 No.2024 Xer
ユーザー mkawa2mkawa2
提出日時 2022-07-29 22:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,320 KB
最終ジャッジ日時 2024-07-19 16:14:27
合計ジャッジ時間 9,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,100 KB
testcase_01 AC 40 ms
53,072 KB
testcase_02 AC 39 ms
52,672 KB
testcase_03 AC 38 ms
52,968 KB
testcase_04 AC 38 ms
53,604 KB
testcase_05 AC 39 ms
52,404 KB
testcase_06 AC 41 ms
52,944 KB
testcase_07 AC 405 ms
110,232 KB
testcase_08 AC 168 ms
118,904 KB
testcase_09 AC 408 ms
119,036 KB
testcase_10 AC 169 ms
118,840 KB
testcase_11 AC 145 ms
88,936 KB
testcase_12 AC 226 ms
101,644 KB
testcase_13 AC 255 ms
105,048 KB
testcase_14 AC 399 ms
118,360 KB
testcase_15 AC 185 ms
95,288 KB
testcase_16 AC 288 ms
105,696 KB
testcase_17 AC 190 ms
92,732 KB
testcase_18 AC 170 ms
93,272 KB
testcase_19 AC 380 ms
105,788 KB
testcase_20 AC 236 ms
101,424 KB
testcase_21 AC 430 ms
118,860 KB
testcase_22 AC 440 ms
118,740 KB
testcase_23 AC 425 ms
119,320 KB
testcase_24 AC 406 ms
118,684 KB
testcase_25 AC 41 ms
59,356 KB
testcase_26 AC 49 ms
65,652 KB
testcase_27 AC 48 ms
64,956 KB
testcase_28 AC 42 ms
59,864 KB
testcase_29 AC 46 ms
62,588 KB
testcase_30 AC 51 ms
65,732 KB
testcase_31 AC 51 ms
66,904 KB
testcase_32 AC 52 ms
66,468 KB
testcase_33 AC 48 ms
64,452 KB
testcase_34 AC 42 ms
58,212 KB
testcase_35 AC 37 ms
52,692 KB
testcase_36 AC 48 ms
63,968 KB
testcase_37 AC 49 ms
64,476 KB
testcase_38 AC 51 ms
65,312 KB
testcase_39 AC 39 ms
53,808 KB
testcase_40 AC 42 ms
59,908 KB
testcase_41 AC 50 ms
65,012 KB
testcase_42 AC 49 ms
64,068 KB
testcase_43 AC 50 ms
64,412 KB
testcase_44 AC 52 ms
66,392 KB
testcase_45 AC 323 ms
101,588 KB
testcase_46 AC 103 ms
82,132 KB
testcase_47 AC 256 ms
105,076 KB
testcase_48 AC 37 ms
52,952 KB
testcase_49 AC 38 ms
53,604 KB
testcase_50 AC 38 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(-1, 1), (-1, 0), (-1, -1), (1, -1), (1, 1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n, x = LI()
aa = LI()
ab = []
for a in aa:
    ab.append((a, a ^ x))

ab.sort(key=lambda x: min(x))

def ng():
    print("No")
    exit()

for i in range(n-1):
    if ab[i][0] >= ab[i+1][1]: ng()
    if ab[i][1] >= ab[i+1][0]: ng()

print("Yes")
0