結果

問題 No.2024 Xer
ユーザー pitPpitP
提出日時 2022-07-29 23:17:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 136,380 KB
最終ジャッジ日時 2024-07-19 16:43:57
合計ジャッジ時間 4,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,500 KB
testcase_01 AC 34 ms
51,836 KB
testcase_02 AC 33 ms
52,556 KB
testcase_03 AC 36 ms
52,328 KB
testcase_04 AC 35 ms
52,332 KB
testcase_05 WA -
testcase_06 AC 34 ms
52,440 KB
testcase_07 AC 101 ms
136,380 KB
testcase_08 AC 115 ms
129,832 KB
testcase_09 AC 115 ms
129,180 KB
testcase_10 AC 116 ms
130,072 KB
testcase_11 AC 58 ms
83,916 KB
testcase_12 AC 76 ms
103,220 KB
testcase_13 WA -
testcase_14 AC 108 ms
108,708 KB
testcase_15 AC 67 ms
94,520 KB
testcase_16 AC 86 ms
114,740 KB
testcase_17 AC 62 ms
89,528 KB
testcase_18 WA -
testcase_19 AC 107 ms
108,548 KB
testcase_20 AC 75 ms
104,044 KB
testcase_21 AC 114 ms
129,572 KB
testcase_22 AC 116 ms
129,104 KB
testcase_23 AC 116 ms
129,668 KB
testcase_24 AC 114 ms
129,524 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 38 ms
60,256 KB
testcase_28 AC 33 ms
52,892 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 38 ms
61,540 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 33 ms
52,364 KB
testcase_40 AC 32 ms
52,816 KB
testcase_41 AC 39 ms
60,564 KB
testcase_42 WA -
testcase_43 AC 39 ms
61,200 KB
testcase_44 AC 38 ms
61,456 KB
testcase_45 AC 89 ms
121,388 KB
testcase_46 AC 47 ms
71,508 KB
testcase_47 AC 84 ms
108,408 KB
testcase_48 AC 34 ms
52,024 KB
testcase_49 AC 33 ms
53,296 KB
testcase_50 AC 33 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
a = list(map(int,input().split()))
if len(a) != len(set(a)):
    print("No")
    exit()
#print(bin(x)[2:][::-1])
#print("AAAAA")

cnt = 0
for num in a:
    if num^x <= x:
        cnt += 1
        #print(bin(num)[2:][::-1])

print("Yes" if cnt <= 1 else "No")
0