結果

問題 No.2024 Xer
ユーザー buey_tbuey_t
提出日時 2023-03-29 18:39:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 1,275 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 130,048 KB
最終ジャッジ日時 2024-09-21 10:18:29
合計ジャッジ時間 15,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
84,992 KB
testcase_01 AC 129 ms
85,504 KB
testcase_02 AC 129 ms
85,316 KB
testcase_03 AC 130 ms
85,104 KB
testcase_04 AC 127 ms
85,068 KB
testcase_05 AC 129 ms
85,120 KB
testcase_06 AC 131 ms
85,168 KB
testcase_07 AC 414 ms
124,416 KB
testcase_08 AC 210 ms
130,048 KB
testcase_09 AC 443 ms
128,384 KB
testcase_10 AC 216 ms
128,744 KB
testcase_11 AC 215 ms
98,944 KB
testcase_12 AC 278 ms
108,288 KB
testcase_13 AC 300 ms
110,848 KB
testcase_14 AC 453 ms
129,376 KB
testcase_15 AC 244 ms
103,912 KB
testcase_16 AC 315 ms
114,048 KB
testcase_17 AC 235 ms
102,400 KB
testcase_18 AC 231 ms
102,220 KB
testcase_19 AC 448 ms
128,884 KB
testcase_20 AC 292 ms
109,232 KB
testcase_21 AC 455 ms
128,508 KB
testcase_22 AC 461 ms
128,896 KB
testcase_23 AC 444 ms
128,508 KB
testcase_24 AC 456 ms
128,256 KB
testcase_25 AC 144 ms
89,344 KB
testcase_26 AC 149 ms
90,112 KB
testcase_27 AC 150 ms
89,856 KB
testcase_28 AC 144 ms
89,344 KB
testcase_29 AC 154 ms
89,904 KB
testcase_30 AC 148 ms
90,132 KB
testcase_31 AC 149 ms
89,940 KB
testcase_32 AC 152 ms
89,984 KB
testcase_33 AC 147 ms
90,112 KB
testcase_34 AC 143 ms
89,088 KB
testcase_35 AC 133 ms
85,376 KB
testcase_36 AC 152 ms
90,204 KB
testcase_37 AC 153 ms
90,112 KB
testcase_38 AC 148 ms
89,728 KB
testcase_39 AC 128 ms
85,120 KB
testcase_40 AC 142 ms
89,456 KB
testcase_41 AC 151 ms
89,984 KB
testcase_42 AC 149 ms
90,060 KB
testcase_43 AC 155 ms
89,820 KB
testcase_44 AC 149 ms
89,984 KB
testcase_45 AC 352 ms
118,144 KB
testcase_46 AC 184 ms
93,568 KB
testcase_47 AC 302 ms
110,720 KB
testcase_48 AC 131 ms
85,096 KB
testcase_49 AC 130 ms
84,992 KB
testcase_50 AC 131 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    
    
    
    '''
    
    N,X = map(int, input().split())
    A = list(map(int, input().split()))
    
    A.sort(lambda x:min(x,x^X))
    
    for i in range(N-1):
        if A[i] >= A[i+1]^X or A[i]^X >= A[i+1]:
            print('No')
            exit()
    
    print('Yes')
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0