結果

問題 No.2024 Xer
ユーザー 👑 rin204rin204
提出日時 2022-08-21 06:41:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 110,216 KB
最終ジャッジ日時 2024-10-09 21:43:45
合計ジャッジ時間 9,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 42 ms
53,168 KB
testcase_04 AC 38 ms
52,624 KB
testcase_05 AC 37 ms
52,816 KB
testcase_06 WA -
testcase_07 AC 306 ms
110,216 KB
testcase_08 AC 109 ms
101,956 KB
testcase_09 WA -
testcase_10 AC 115 ms
102,268 KB
testcase_11 AC 114 ms
80,768 KB
testcase_12 AC 202 ms
99,076 KB
testcase_13 AC 210 ms
100,476 KB
testcase_14 AC 300 ms
108,968 KB
testcase_15 AC 140 ms
87,744 KB
testcase_16 AC 229 ms
101,656 KB
testcase_17 WA -
testcase_18 AC 129 ms
84,716 KB
testcase_19 AC 301 ms
109,212 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 46 ms
62,052 KB
testcase_28 AC 39 ms
52,896 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 47 ms
61,652 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 38 ms
53,280 KB
testcase_40 AC 39 ms
53,560 KB
testcase_41 AC 47 ms
61,236 KB
testcase_42 WA -
testcase_43 AC 48 ms
60,928 KB
testcase_44 AC 49 ms
62,472 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 37 ms
52,192 KB
testcase_49 AC 37 ms
52,540 KB
testcase_50 AC 38 ms
53,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
A = list(map(int, input().split()))
A.sort(key = lambda a:min(a, a^x))
for i in range(1, n):
    if A[i - 1] >= A[i] ^ x or A[i - 1] ^ x >= A[i]:
        print("No")
print("Yes")
0