結果

問題 No.2024 Xer
ユーザー ikomaikoma
提出日時 2022-07-29 23:41:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,394 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 148,204 KB
最終ジャッジ日時 2024-07-19 17:17:40
合計ジャッジ時間 22,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,656 KB
testcase_01 AC 44 ms
55,040 KB
testcase_02 AC 44 ms
54,528 KB
testcase_03 AC 47 ms
54,784 KB
testcase_04 AC 49 ms
54,272 KB
testcase_05 AC 49 ms
55,040 KB
testcase_06 AC 49 ms
54,272 KB
testcase_07 AC 1,376 ms
140,516 KB
testcase_08 AC 233 ms
148,020 KB
testcase_09 AC 1,362 ms
122,968 KB
testcase_10 AC 231 ms
148,204 KB
testcase_11 AC 410 ms
95,504 KB
testcase_12 AC 697 ms
109,228 KB
testcase_13 AC 791 ms
113,488 KB
testcase_14 AC 1,325 ms
137,788 KB
testcase_15 AC 566 ms
102,104 KB
testcase_16 AC 884 ms
118,616 KB
testcase_17 AC 499 ms
92,544 KB
testcase_18 AC 478 ms
99,316 KB
testcase_19 AC 1,336 ms
137,988 KB
testcase_20 AC 774 ms
96,160 KB
testcase_21 AC 1,394 ms
122,972 KB
testcase_22 AC 1,374 ms
123,360 KB
testcase_23 AC 1,362 ms
123,684 KB
testcase_24 AC 1,343 ms
123,032 KB
testcase_25 AC 64 ms
71,680 KB
testcase_26 AC 82 ms
76,928 KB
testcase_27 AC 75 ms
76,672 KB
testcase_28 AC 61 ms
69,376 KB
testcase_29 AC 72 ms
76,792 KB
testcase_30 AC 82 ms
76,856 KB
testcase_31 AC 94 ms
77,568 KB
testcase_32 AC 84 ms
77,696 KB
testcase_33 AC 81 ms
76,928 KB
testcase_34 AC 62 ms
70,016 KB
testcase_35 AC 45 ms
55,296 KB
testcase_36 AC 80 ms
76,672 KB
testcase_37 AC 90 ms
77,228 KB
testcase_38 AC 86 ms
76,800 KB
testcase_39 AC 54 ms
61,568 KB
testcase_40 AC 66 ms
69,248 KB
testcase_41 AC 84 ms
76,544 KB
testcase_42 AC 82 ms
76,760 KB
testcase_43 AC 81 ms
77,312 KB
testcase_44 AC 81 ms
76,672 KB
testcase_45 AC 1,026 ms
101,892 KB
testcase_46 AC 243 ms
84,608 KB
testcase_47 AC 803 ms
97,536 KB
testcase_48 AC 46 ms
54,400 KB
testcase_49 AC 50 ms
54,400 KB
testcase_50 AC 50 ms
55,040 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] or As[i-1] >= As[i]^X:
        ng=1
print("Yes" if ng==0 and len(set(A))==N else "No")
0