結果

問題 No.2024 Xer
ユーザー titiatitia
提出日時 2022-07-30 00:17:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,048 KB
最終ジャッジ日時 2024-07-19 18:18:14
合計ジャッジ時間 9,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 25 ms
10,368 KB
testcase_05 AC 26 ms
10,368 KB
testcase_06 WA -
testcase_07 AC 520 ms
41,624 KB
testcase_08 AC 341 ms
40,344 KB
testcase_09 WA -
testcase_10 AC 366 ms
43,564 KB
testcase_11 AC 163 ms
21,076 KB
testcase_12 AC 262 ms
28,996 KB
testcase_13 AC 289 ms
30,224 KB
testcase_14 AC 514 ms
43,024 KB
testcase_15 AC 207 ms
24,616 KB
testcase_16 AC 334 ms
32,476 KB
testcase_17 WA -
testcase_18 AC 175 ms
22,540 KB
testcase_19 AC 487 ms
42,404 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 31 ms
10,752 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 35 ms
11,264 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 25 ms
10,624 KB
testcase_40 AC 26 ms
10,496 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 WA -
testcase_43 AC 32 ms
10,880 KB
testcase_44 AC 34 ms
11,008 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 27 ms
10,624 KB
testcase_49 AC 26 ms
10,496 KB
testcase_50 AC 26 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

N,X=map(int,input().split())
A=list(map(int,input().split()))
B=[(min(A[i],A[i]^X),i) for i in range(N)]

B.sort(key=itemgetter(0))

C=[-1]*N

for i in range(N):
    _,ind=B[i]
    C[i]=A[ind]

for i in range(N-1):
    a=C[i]
    b=C[i+1]

    if a>=b^X or a^X>=b:
        print("No")
        print(a,b)
        break
else:
    print("Yes")
0