結果

問題 No.2300 Substring OR Sum
ユーザー titia
提出日時 2023-05-12 22:50:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-11-28 19:26:23
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

ALL=N*(N+1)//2

ANS=0

for i in range(30):
    score=0
    now=0

    for a in A:
        if a & (1<<i) == 0:
            now+=1
        else:
            score+=now*(now+1)//2
            now=0

    score+=now*(now+1)//2
    ANS+=(ALL-score)*(1<<i)

print(ANS)
0