結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,784 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 45 ms
54,528 KB
testcase_04 AC 42 ms
54,784 KB
testcase_05 AC 42 ms
54,528 KB
testcase_06 WA -
testcase_07 AC 1,167 ms
141,280 KB
testcase_08 AC 215 ms
147,640 KB
testcase_09 WA -
testcase_10 AC 227 ms
147,684 KB
testcase_11 AC 357 ms
95,880 KB
testcase_12 AC 624 ms
109,568 KB
testcase_13 AC 704 ms
114,256 KB
testcase_14 AC 1,181 ms
138,084 KB
testcase_15 AC 488 ms
102,024 KB
testcase_16 AC 756 ms
118,736 KB
testcase_17 WA -
testcase_18 AC 431 ms
99,724 KB
testcase_19 AC 1,138 ms
137,348 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 76 ms
77,184 KB
testcase_28 AC 61 ms
69,504 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 83 ms
77,180 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 49 ms
61,824 KB
testcase_40 AC 61 ms
69,376 KB
testcase_41 AC 76 ms
76,416 KB
testcase_42 WA -
testcase_43 AC 76 ms
76,612 KB
testcase_44 AC 82 ms
76,784 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 44 ms
54,144 KB
testcase_49 AC 44 ms
54,656 KB
testcase_50 AC 47 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]:
        ng=1
        print(i,As[i-1]^X , As[i])
print("Yes" if ng==0 and len(set(A))==N else "No")
0