結果

問題 No.2300 Substring OR Sum
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-05-18 22:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 178,612 KB
最終ジャッジ日時 2024-05-09 19:03:51
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,552 KB
testcase_01 AC 46 ms
55,680 KB
testcase_02 AC 45 ms
55,296 KB
testcase_03 AC 188 ms
90,612 KB
testcase_04 AC 163 ms
90,232 KB
testcase_05 AC 190 ms
92,972 KB
testcase_06 AC 131 ms
84,224 KB
testcase_07 AC 483 ms
145,996 KB
testcase_08 AC 238 ms
96,796 KB
testcase_09 AC 197 ms
92,652 KB
testcase_10 AC 397 ms
122,800 KB
testcase_11 AC 430 ms
137,612 KB
testcase_12 AC 472 ms
146,508 KB
testcase_13 AC 386 ms
178,612 KB
testcase_14 AC 114 ms
117,376 KB
testcase_15 AC 250 ms
96,808 KB
testcase_16 AC 393 ms
124,524 KB
testcase_17 AC 479 ms
143,788 KB
testcase_18 AC 47 ms
55,552 KB
testcase_19 AC 46 ms
55,680 KB
testcase_20 AC 45 ms
55,680 KB
testcase_21 AC 45 ms
55,680 KB
testcase_22 AC 46 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from heapq import *
from functools import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
M = len(bin(max(A)))-2
ans = ((1<<M) - 1)*N*(N+1)//2
for bit in range(M):
    X = []
    for i in range(N):
        X.append((A[i]>>bit)&1)
    
    for g,r in groupby(X):
        if g==0:
            n = len(list(r))
            ans -= (1<<bit)*n*(n+1)//2
print(ans)
0