結果

問題 No.2672 Subset Xor Sum
ユーザー FromBooskaFromBooska
提出日時 2024-03-16 07:32:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 187,908 KB
最終ジャッジ日時 2024-09-30 03:53:07
合計ジャッジ時間 6,813 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,740 KB
testcase_01 AC 36 ms
54,292 KB
testcase_02 AC 37 ms
54,856 KB
testcase_03 AC 36 ms
54,924 KB
testcase_04 AC 37 ms
54,576 KB
testcase_05 AC 40 ms
54,292 KB
testcase_06 AC 37 ms
54,536 KB
testcase_07 AC 39 ms
55,004 KB
testcase_08 AC 38 ms
54,072 KB
testcase_09 AC 38 ms
54,228 KB
testcase_10 AC 36 ms
55,396 KB
testcase_11 AC 37 ms
54,380 KB
testcase_12 AC 36 ms
54,352 KB
testcase_13 AC 36 ms
54,660 KB
testcase_14 AC 36 ms
55,588 KB
testcase_15 AC 37 ms
53,944 KB
testcase_16 AC 36 ms
54,652 KB
testcase_17 AC 37 ms
54,508 KB
testcase_18 AC 38 ms
53,732 KB
testcase_19 AC 38 ms
54,724 KB
testcase_20 AC 37 ms
54,296 KB
testcase_21 AC 38 ms
55,792 KB
testcase_22 AC 41 ms
54,228 KB
testcase_23 AC 38 ms
55,004 KB
testcase_24 AC 37 ms
54,100 KB
testcase_25 AC 38 ms
53,944 KB
testcase_26 AC 39 ms
54,440 KB
testcase_27 AC 37 ms
55,528 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
54,484 KB
testcase_31 AC 241 ms
175,084 KB
testcase_32 AC 123 ms
115,732 KB
testcase_33 AC 113 ms
110,208 KB
testcase_34 AC 187 ms
139,412 KB
testcase_35 AC 237 ms
174,324 KB
testcase_36 AC 209 ms
149,008 KB
testcase_37 AC 231 ms
163,408 KB
testcase_38 AC 136 ms
107,764 KB
testcase_39 AC 257 ms
187,908 KB
testcase_40 AC 81 ms
89,844 KB
testcase_41 AC 144 ms
120,460 KB
testcase_42 AC 180 ms
128,528 KB
testcase_43 AC 159 ms
114,688 KB
testcase_44 AC 205 ms
146,780 KB
testcase_45 AC 148 ms
113,076 KB
testcase_46 AC 42 ms
62,728 KB
testcase_47 AC 50 ms
66,968 KB
testcase_48 AC 50 ms
62,760 KB
testcase_49 AC 42 ms
62,180 KB
testcase_50 AC 41 ms
62,424 KB
testcase_51 AC 49 ms
67,316 KB
testcase_52 AC 49 ms
66,376 KB
testcase_53 AC 49 ms
66,604 KB
testcase_54 AC 47 ms
66,656 KB
testcase_55 AC 48 ms
66,112 KB
testcase_56 AC 49 ms
63,008 KB
testcase_57 AC 48 ms
65,436 KB
testcase_58 AC 46 ms
63,296 KB
testcase_59 AC 37 ms
54,244 KB
testcase_60 AC 41 ms
61,968 KB
testcase_61 AC 41 ms
61,664 KB
testcase_62 AC 48 ms
65,300 KB
testcase_63 AC 48 ms
64,772 KB
testcase_64 AC 49 ms
67,008 KB
testcase_65 AC 47 ms
64,292 KB
testcase_66 AC 37 ms
54,324 KB
testcase_67 AC 37 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# まず全部で0になるか、そしてどこかで0ができればYesだろう
# どこかで0になるかは、定かでないがソートして累積xor sumして同じ数字がN差でなく登場するかでどうだろう


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

from collections import Counter, defaultdict

total = 0
for i in range(N):
    total ^= A[i]
#print('total', total)
ans = 'No'
if total == 0:
    if 0 in A:
        ans = 'Yes'
    if N>5001:
        ans = 'Yes'
    
    xor_cumu = [0]
    temp = 0
    for a in A:
        temp ^= a
        xor_cumu.append(temp)
    dic = defaultdict(list)
    for i in range(N, -1, -1):
        dic[xor_cumu[i]].append(i)
    #print('xor_cumu', xor_cumu)
    #print('dic', dic)
    
    for i in range(N+1):
        #print('i', i, 'dic[xor_cumu[i]][0]', dic[xor_cumu[i]][0], dic[xor_cumu[i]][0]-i<N, 'ans', ans)
        if dic[xor_cumu[i]][0] != i and dic[xor_cumu[i]][0]-i<N: 
            ans = 'Yes'
        
print(ans)
0