結果

問題 No.2024 Xer
ユーザー prussian_coderprussian_coder
提出日時 2022-07-29 22:07:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 104,116 KB
最終ジャッジ日時 2024-07-19 14:56:22
合計ジャッジ時間 11,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,420 KB
testcase_01 AC 37 ms
52,084 KB
testcase_02 AC 38 ms
52,072 KB
testcase_03 AC 38 ms
51,876 KB
testcase_04 AC 39 ms
52,332 KB
testcase_05 AC 37 ms
52,500 KB
testcase_06 AC 37 ms
52,268 KB
testcase_07 AC 588 ms
103,716 KB
testcase_08 AC 121 ms
103,732 KB
testcase_09 AC 600 ms
103,600 KB
testcase_10 AC 121 ms
103,904 KB
testcase_11 AC 191 ms
82,620 KB
testcase_12 AC 320 ms
89,404 KB
testcase_13 AC 356 ms
91,276 KB
testcase_14 AC 562 ms
103,804 KB
testcase_15 AC 250 ms
86,240 KB
testcase_16 AC 382 ms
93,180 KB
testcase_17 AC 229 ms
85,188 KB
testcase_18 AC 223 ms
84,484 KB
testcase_19 AC 571 ms
104,116 KB
testcase_20 AC 336 ms
89,784 KB
testcase_21 AC 586 ms
103,648 KB
testcase_22 AC 586 ms
103,868 KB
testcase_23 AC 585 ms
103,900 KB
testcase_24 AC 584 ms
103,940 KB
testcase_25 AC 40 ms
54,808 KB
testcase_26 AC 48 ms
65,820 KB
testcase_27 AC 48 ms
64,720 KB
testcase_28 AC 40 ms
54,588 KB
testcase_29 AC 43 ms
61,432 KB
testcase_30 AC 49 ms
65,040 KB
testcase_31 AC 52 ms
67,136 KB
testcase_32 AC 52 ms
68,720 KB
testcase_33 AC 46 ms
64,764 KB
testcase_34 AC 39 ms
53,792 KB
testcase_35 AC 37 ms
53,172 KB
testcase_36 AC 47 ms
64,100 KB
testcase_37 AC 49 ms
66,024 KB
testcase_38 AC 50 ms
67,696 KB
testcase_39 AC 39 ms
52,620 KB
testcase_40 AC 40 ms
54,252 KB
testcase_41 AC 47 ms
64,236 KB
testcase_42 AC 47 ms
65,024 KB
testcase_43 AC 47 ms
64,220 KB
testcase_44 AC 50 ms
66,388 KB
testcase_45 AC 475 ms
100,604 KB
testcase_46 AC 128 ms
78,720 KB
testcase_47 AC 359 ms
91,096 KB
testcase_48 AC 37 ms
52,736 KB
testcase_49 AC 36 ms
52,752 KB
testcase_50 AC 37 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A=sorted([((int(x)^X)+int(x),int(x)) for x in input().split()])
for i in range(N-1):
	if A[i][0]==A[i+1][0] or A[i][1]^X>=A[i+1][1] or A[i][1]>=A[i+1][1]^X:
		print("No")
		exit()
print("Yes")
0