結果

問題 No.2024 Xer
ユーザー sotanishysotanishy
提出日時 2023-07-29 13:56:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,900 KB
最終ジャッジ日時 2024-10-07 21:59:21
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,228 KB
testcase_01 AC 32 ms
52,276 KB
testcase_02 AC 32 ms
52,440 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 31 ms
52,364 KB
testcase_05 AC 32 ms
52,160 KB
testcase_06 AC 32 ms
53,024 KB
testcase_07 AC 281 ms
109,900 KB
testcase_08 AC 106 ms
101,844 KB
testcase_09 AC 279 ms
103,100 KB
testcase_10 AC 106 ms
102,244 KB
testcase_11 AC 104 ms
82,016 KB
testcase_12 AC 187 ms
99,188 KB
testcase_13 AC 200 ms
100,732 KB
testcase_14 AC 268 ms
108,908 KB
testcase_15 AC 133 ms
88,896 KB
testcase_16 AC 209 ms
102,380 KB
testcase_17 AC 119 ms
84,808 KB
testcase_18 AC 118 ms
85,780 KB
testcase_19 AC 268 ms
108,840 KB
testcase_20 AC 192 ms
99,120 KB
testcase_21 AC 287 ms
103,640 KB
testcase_22 AC 288 ms
103,500 KB
testcase_23 AC 287 ms
103,252 KB
testcase_24 AC 282 ms
102,872 KB
testcase_25 AC 39 ms
52,456 KB
testcase_26 AC 42 ms
60,192 KB
testcase_27 AC 43 ms
60,792 KB
testcase_28 AC 37 ms
53,476 KB
testcase_29 AC 42 ms
59,108 KB
testcase_30 AC 42 ms
60,840 KB
testcase_31 AC 43 ms
60,492 KB
testcase_32 AC 45 ms
61,676 KB
testcase_33 AC 42 ms
59,764 KB
testcase_34 AC 37 ms
53,032 KB
testcase_35 AC 35 ms
51,956 KB
testcase_36 AC 40 ms
58,972 KB
testcase_37 AC 41 ms
60,068 KB
testcase_38 AC 48 ms
60,232 KB
testcase_39 AC 37 ms
52,092 KB
testcase_40 AC 37 ms
54,076 KB
testcase_41 AC 44 ms
61,080 KB
testcase_42 AC 42 ms
59,608 KB
testcase_43 AC 44 ms
61,484 KB
testcase_44 AC 44 ms
62,148 KB
testcase_45 AC 93 ms
103,776 KB
testcase_46 AC 50 ms
69,980 KB
testcase_47 AC 88 ms
100,496 KB
testcase_48 AC 36 ms
51,684 KB
testcase_49 AC 36 ms
52,380 KB
testcase_50 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A=list(map(int,input().split()))
A.sort(key=lambda y:y&~X)
print("Yes" if all(A[i]<A[i+1]^X and A[i]^X<A[i+1] for i in range(N-1)) else "No")
0