結果

問題 No.2300 Substring OR Sum
ユーザー flygonflygon
提出日時 2023-05-12 21:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 185,984 KB
最終ジャッジ日時 2024-11-28 17:38:09
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0
for i in range(30):
    b = []
    for j in range(n):
        tmp = (a[j]>>i)&1
        if not b:
            b.append([tmp,1])
        else:
            if b[-1][0] == tmp:
                b[-1][1] += 1
            else:
                b.append([tmp,1])
    tmp = n*(n+1)//2
    for bm, cnt in b:
        if bm == 1: continue
        tmp -= cnt*(cnt+1)//2
    ans += (1<<i)*tmp
print(ans)
0