結果

問題 No.2024 Xer
ユーザー ikomaikoma
提出日時 2022-07-29 23:39:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 147,880 KB
最終ジャッジ日時 2024-07-19 17:15:31
合計ジャッジ時間 20,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,144 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 45 ms
54,528 KB
testcase_03 AC 45 ms
54,272 KB
testcase_04 AC 43 ms
54,400 KB
testcase_05 AC 45 ms
54,400 KB
testcase_06 AC 45 ms
54,528 KB
testcase_07 AC 1,182 ms
140,912 KB
testcase_08 AC 221 ms
147,880 KB
testcase_09 AC 1,180 ms
123,096 KB
testcase_10 AC 232 ms
147,416 KB
testcase_11 AC 370 ms
95,128 KB
testcase_12 AC 631 ms
109,624 KB
testcase_13 AC 693 ms
113,484 KB
testcase_14 AC 1,136 ms
137,336 KB
testcase_15 AC 489 ms
102,744 KB
testcase_16 AC 756 ms
118,372 KB
testcase_17 AC 440 ms
92,416 KB
testcase_18 AC 425 ms
99,336 KB
testcase_19 AC 1,153 ms
137,996 KB
testcase_20 AC 683 ms
95,872 KB
testcase_21 AC 1,199 ms
123,356 KB
testcase_22 AC 1,212 ms
123,352 KB
testcase_23 AC 1,221 ms
122,960 KB
testcase_24 AC 1,193 ms
122,956 KB
testcase_25 WA -
testcase_26 AC 89 ms
76,800 KB
testcase_27 AC 84 ms
76,288 KB
testcase_28 AC 70 ms
69,376 KB
testcase_29 AC 80 ms
76,928 KB
testcase_30 AC 86 ms
76,672 KB
testcase_31 AC 92 ms
76,928 KB
testcase_32 AC 90 ms
77,696 KB
testcase_33 AC 87 ms
76,416 KB
testcase_34 AC 69 ms
70,400 KB
testcase_35 AC 48 ms
55,552 KB
testcase_36 AC 85 ms
76,800 KB
testcase_37 AC 88 ms
76,800 KB
testcase_38 WA -
testcase_39 AC 54 ms
61,312 KB
testcase_40 AC 68 ms
69,632 KB
testcase_41 AC 82 ms
76,416 KB
testcase_42 AC 86 ms
77,056 KB
testcase_43 AC 85 ms
76,800 KB
testcase_44 AC 91 ms
76,672 KB
testcase_45 AC 872 ms
101,384 KB
testcase_46 AC 229 ms
84,352 KB
testcase_47 AC 690 ms
97,664 KB
testcase_48 AC 43 ms
54,272 KB
testcase_49 AC 44 ms
54,272 KB
testcase_50 AC 47 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,X=map(int,input().split())
A=list(map(int,input().split()))

from functools import cmp_to_key
def cmp(a,b):
    return -1 if min(a,a^X)<min(b,b^X) else 1

As = sorted(A, key=cmp_to_key(cmp))
ng=0
for i in range(1,N):
    if As[i-1]^X >= As[i]:
        ng=1
print("Yes" if ng==0 and len(set(A))==N else "No")
0