結果

問題 No.2024 Xer
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-29 23:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 119,612 KB
最終ジャッジ日時 2024-07-19 17:28:47
合計ジャッジ時間 11,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,200 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,200 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 606 ms
110,208 KB
testcase_08 AC 150 ms
119,068 KB
testcase_09 AC 598 ms
119,612 KB
testcase_10 AC 161 ms
118,864 KB
testcase_11 AC 197 ms
90,112 KB
testcase_12 AC 313 ms
98,432 KB
testcase_13 AC 373 ms
99,968 KB
testcase_14 AC 569 ms
108,800 KB
testcase_15 AC 261 ms
96,768 KB
testcase_16 AC 386 ms
101,732 KB
testcase_17 AC 230 ms
94,592 KB
testcase_18 AC 224 ms
93,696 KB
testcase_19 AC 562 ms
108,288 KB
testcase_20 AC 327 ms
97,792 KB
testcase_21 AC 587 ms
118,844 KB
testcase_22 AC 593 ms
118,724 KB
testcase_23 AC 590 ms
118,980 KB
testcase_24 AC 580 ms
118,848 KB
testcase_25 AC 38 ms
52,736 KB
testcase_26 AC 48 ms
61,568 KB
testcase_27 AC 48 ms
61,568 KB
testcase_28 AC 39 ms
52,608 KB
testcase_29 AC 45 ms
59,520 KB
testcase_30 AC 48 ms
61,824 KB
testcase_31 AC 51 ms
62,720 KB
testcase_32 AC 53 ms
63,104 KB
testcase_33 AC 46 ms
61,184 KB
testcase_34 AC 36 ms
52,480 KB
testcase_35 AC 36 ms
52,224 KB
testcase_36 AC 48 ms
61,184 KB
testcase_37 AC 50 ms
62,464 KB
testcase_38 AC 51 ms
63,184 KB
testcase_39 AC 36 ms
51,712 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 49 ms
61,800 KB
testcase_42 AC 49 ms
62,080 KB
testcase_43 AC 49 ms
61,696 KB
testcase_44 AC 51 ms
62,464 KB
testcase_45 AC 448 ms
103,040 KB
testcase_46 AC 132 ms
82,432 KB
testcase_47 AC 330 ms
99,968 KB
testcase_48 AC 35 ms
51,456 KB
testcase_49 AC 36 ms
51,584 KB
testcase_50 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
A = list(map(int,input().split()))
sA = sorted([[min(a,a^x),a] for a in A])
for i in range(n-1):
    a = sA[i][1]
    na = sA[i+1][1]
    
    if a < na^x and a^x < na:
        continue
    print("No")
    exit()
print("Yes")
0