結果

問題 No.1456 Range Xor
ユーザー convexineqconvexineq
提出日時 2021-04-01 11:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 100,436 KB
最終ジャッジ日時 2024-12-17 15:06:17
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,532 KB
testcase_01 AC 34 ms
52,820 KB
testcase_02 AC 33 ms
52,196 KB
testcase_03 AC 64 ms
90,392 KB
testcase_04 AC 67 ms
92,724 KB
testcase_05 AC 75 ms
99,208 KB
testcase_06 AC 66 ms
89,988 KB
testcase_07 AC 73 ms
100,436 KB
testcase_08 AC 71 ms
97,588 KB
testcase_09 AC 67 ms
91,108 KB
testcase_10 AC 68 ms
92,664 KB
testcase_11 AC 46 ms
68,288 KB
testcase_12 AC 43 ms
63,844 KB
testcase_13 AC 50 ms
73,860 KB
testcase_14 AC 48 ms
69,852 KB
testcase_15 AC 60 ms
85,120 KB
testcase_16 AC 63 ms
86,968 KB
testcase_17 AC 55 ms
78,448 KB
testcase_18 AC 48 ms
69,472 KB
testcase_19 AC 64 ms
83,296 KB
testcase_20 AC 67 ms
87,304 KB
testcase_21 AC 58 ms
80,328 KB
testcase_22 AC 61 ms
79,928 KB
testcase_23 AC 53 ms
73,500 KB
testcase_24 AC 46 ms
65,700 KB
testcase_25 AC 51 ms
71,080 KB
testcase_26 AC 62 ms
81,344 KB
testcase_27 AC 63 ms
85,156 KB
testcase_28 AC 50 ms
70,492 KB
testcase_29 AC 77 ms
98,848 KB
testcase_30 AC 68 ms
92,672 KB
testcase_31 AC 49 ms
70,160 KB
testcase_32 AC 50 ms
68,928 KB
testcase_33 AC 55 ms
74,912 KB
testcase_34 AC 73 ms
96,112 KB
testcase_35 AC 58 ms
78,644 KB
testcase_36 AC 70 ms
94,504 KB
testcase_37 AC 78 ms
98,728 KB
testcase_38 AC 46 ms
67,956 KB
testcase_39 AC 62 ms
83,036 KB
testcase_40 AC 69 ms
89,420 KB
testcase_41 AC 44 ms
60,840 KB
testcase_42 AC 43 ms
63,564 KB
testcase_43 AC 36 ms
52,608 KB
testcase_44 AC 34 ms
52,308 KB
testcase_45 AC 34 ms
53,016 KB
testcase_46 AC 38 ms
53,020 KB
testcase_47 AC 36 ms
53,056 KB
testcase_48 AC 35 ms
51,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
*a, = map(int,input().split())
for i in range(1,n):
    a[i] ^= a[i-1]
d = {0}
for ai in a:
    if ai^k in d:
        print("Yes")
        exit()
    d.add(ai)
print("No")
0