結果

問題 No.2024 Xer
ユーザー 👑 KazunKazun
提出日時 2022-07-29 23:37:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-07-19 17:12:31
合計ジャッジ時間 7,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 323 ms
112,896 KB
testcase_08 AC 121 ms
105,172 KB
testcase_09 AC 320 ms
106,444 KB
testcase_10 AC 120 ms
105,024 KB
testcase_11 AC 122 ms
81,920 KB
testcase_12 AC 208 ms
99,840 KB
testcase_13 AC 224 ms
101,760 KB
testcase_14 AC 340 ms
106,040 KB
testcase_15 AC 150 ms
89,940 KB
testcase_16 AC 236 ms
103,168 KB
testcase_17 AC 135 ms
86,144 KB
testcase_18 AC 130 ms
86,528 KB
testcase_19 AC 312 ms
106,044 KB
testcase_20 AC 216 ms
99,968 KB
testcase_21 AC 328 ms
106,632 KB
testcase_22 AC 322 ms
106,752 KB
testcase_23 AC 324 ms
106,684 KB
testcase_24 AC 319 ms
106,684 KB
testcase_25 AC 41 ms
53,504 KB
testcase_26 AC 47 ms
60,824 KB
testcase_27 AC 55 ms
61,824 KB
testcase_28 AC 45 ms
52,864 KB
testcase_29 AC 49 ms
59,904 KB
testcase_30 AC 50 ms
60,672 KB
testcase_31 AC 47 ms
61,440 KB
testcase_32 AC 50 ms
62,464 KB
testcase_33 AC 47 ms
60,928 KB
testcase_34 AC 40 ms
52,864 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 46 ms
60,672 KB
testcase_37 AC 47 ms
61,056 KB
testcase_38 AC 47 ms
61,184 KB
testcase_39 AC 41 ms
52,480 KB
testcase_40 AC 40 ms
52,736 KB
testcase_41 AC 52 ms
61,312 KB
testcase_42 AC 49 ms
60,824 KB
testcase_43 AC 48 ms
61,440 KB
testcase_44 AC 52 ms
62,080 KB
testcase_45 AC 101 ms
105,728 KB
testcase_46 AC 57 ms
71,424 KB
testcase_47 AC 96 ms
101,708 KB
testcase_48 AC 39 ms
52,096 KB
testcase_49 AC 38 ms
52,224 KB
testcase_50 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

def solve():
    N,X=map(int,input().split())
    A=list(map(int,input().split()))
    B=[a^X for a in A]

    I=sorted(range(N),key=lambda i:A[i]+B[i])
    for k in range(N-1):
        if A[I[k]]>=B[I[k+1]] or B[I[k]]>=A[I[k+1]]:
            return False
    return True

print("Yes" if solve() else "No")

0