結果

問題 No.2300 Substring OR Sum
ユーザー FromBooskaFromBooska
提出日時 2023-05-13 13:07:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 258,808 KB
最終ジャッジ日時 2024-05-06 20:25:21
合計ジャッジ時間 5,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 180 ms
132,020 KB
testcase_04 AC 159 ms
125,484 KB
testcase_05 AC 189 ms
140,936 KB
testcase_06 AC 122 ms
98,036 KB
testcase_07 AC 415 ms
258,176 KB
testcase_08 AC 236 ms
160,288 KB
testcase_09 AC 194 ms
141,688 KB
testcase_10 AC 347 ms
235,324 KB
testcase_11 AC 376 ms
258,012 KB
testcase_12 AC 493 ms
256,776 KB
testcase_13 AC 286 ms
258,808 KB
testcase_14 AC 294 ms
258,276 KB
testcase_15 AC 247 ms
172,944 KB
testcase_16 AC 416 ms
234,268 KB
testcase_17 AC 404 ms
258,020 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ビット演算なのでビット桁ごとに0と1をチェック
# 公式解説の最初をヒントにする
# ORが0になるのは、その区間が0だけということ
# 各ビット桁で、0だけの区間を見る
# たとえば0区間超3なら111223で6組合せ、つまりl(l+1)//2
# 各ビット桁での組合せ総数はN*(N+1)//2、0区間数を引いて、残りに2**dをかけるか

N = int(input())
A = list(map(int, input().split()))
ans = 0
for d in range(30):
    temp = []
    for a in A:
        if a>>d & 1 == 1:
            temp.append(1)
        else:
            temp.append(0)
    
    zero_interval_count = 0
    last = 1
    length = 0
    for i in range(N):
        if temp[i] == 1:
            if last == 0:
                calc = length*(length+1)//2
                zero_interval_count += calc
                length = 0
                last = 1
            else:
                length = 0
                last = 1
        elif temp[i] == 0:
            length += 1
            last = 0
    calc = length*(length+1)//2
    zero_interval_count += calc
    add = pow(2, d)*(N*(N+1)//2-zero_interval_count)
    ans += add
    #print('d', d, temp, zero_interval_count, add)
print(ans)
0