結果

問題 No.2024 Xer
ユーザー tamatotamato
提出日時 2022-07-29 22:04:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 114,740 KB
最終ジャッジ日時 2024-07-19 14:51:25
合計ジャッジ時間 7,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,092 KB
testcase_01 AC 37 ms
52,976 KB
testcase_02 AC 40 ms
53,448 KB
testcase_03 AC 40 ms
52,576 KB
testcase_04 AC 38 ms
52,756 KB
testcase_05 AC 37 ms
52,184 KB
testcase_06 AC 37 ms
52,500 KB
testcase_07 AC 311 ms
109,264 KB
testcase_08 AC 120 ms
112,196 KB
testcase_09 AC 315 ms
113,576 KB
testcase_10 AC 126 ms
112,948 KB
testcase_11 AC 117 ms
85,292 KB
testcase_12 AC 198 ms
101,632 KB
testcase_13 AC 199 ms
102,752 KB
testcase_14 AC 303 ms
105,356 KB
testcase_15 AC 168 ms
98,360 KB
testcase_16 AC 216 ms
102,732 KB
testcase_17 AC 155 ms
96,092 KB
testcase_18 AC 131 ms
90,236 KB
testcase_19 AC 301 ms
105,580 KB
testcase_20 AC 191 ms
101,012 KB
testcase_21 AC 319 ms
114,060 KB
testcase_22 AC 317 ms
114,740 KB
testcase_23 AC 320 ms
113,696 KB
testcase_24 AC 322 ms
113,684 KB
testcase_25 AC 39 ms
53,432 KB
testcase_26 AC 48 ms
62,104 KB
testcase_27 AC 48 ms
61,960 KB
testcase_28 AC 39 ms
53,152 KB
testcase_29 AC 45 ms
60,052 KB
testcase_30 AC 47 ms
62,572 KB
testcase_31 AC 48 ms
64,168 KB
testcase_32 AC 50 ms
63,820 KB
testcase_33 AC 48 ms
62,652 KB
testcase_34 AC 39 ms
53,804 KB
testcase_35 AC 37 ms
53,564 KB
testcase_36 AC 48 ms
61,480 KB
testcase_37 AC 48 ms
62,044 KB
testcase_38 AC 49 ms
62,760 KB
testcase_39 AC 37 ms
53,692 KB
testcase_40 AC 39 ms
53,796 KB
testcase_41 AC 49 ms
63,504 KB
testcase_42 AC 48 ms
62,524 KB
testcase_43 AC 47 ms
62,372 KB
testcase_44 AC 49 ms
62,956 KB
testcase_45 AC 249 ms
99,200 KB
testcase_46 AC 82 ms
75,220 KB
testcase_47 AC 202 ms
102,092 KB
testcase_48 AC 37 ms
52,896 KB
testcase_49 AC 37 ms
52,448 KB
testcase_50 AC 36 ms
53,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    N, X = map(int, input().split())
    A = list(map(int, input().split()))

    val = []
    for i, a in enumerate(A):
        b = a ^ X
        val.append((min((a << 30) + b, (b << 30) + a), i))
    val.sort(key=lambda y: y[0])

    a_prev = b_prev = -1
    for _, i in val:
        a = A[i]
        b = a ^ X
        if a <= b_prev or b <= a_prev:
            print("No")
            exit()
        a_prev = a
        b_prev = b
    print("Yes")


if __name__ == '__main__':
    main()
0