結果

問題 No.2300 Substring OR Sum
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-05-18 22:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 178,500 KB
最終ジャッジ日時 2024-12-16 10:44:28
合計ジャッジ時間 8,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
55,296 KB
testcase_01 AC 56 ms
55,552 KB
testcase_02 AC 61 ms
55,552 KB
testcase_03 AC 229 ms
90,368 KB
testcase_04 AC 189 ms
89,848 KB
testcase_05 AC 220 ms
93,104 KB
testcase_06 AC 150 ms
84,224 KB
testcase_07 AC 547 ms
146,248 KB
testcase_08 AC 270 ms
96,756 KB
testcase_09 AC 226 ms
92,844 KB
testcase_10 AC 440 ms
123,044 KB
testcase_11 AC 499 ms
137,228 KB
testcase_12 AC 542 ms
146,932 KB
testcase_13 AC 413 ms
178,500 KB
testcase_14 AC 121 ms
117,504 KB
testcase_15 AC 273 ms
96,944 KB
testcase_16 AC 440 ms
123,764 KB
testcase_17 AC 535 ms
143,280 KB
testcase_18 AC 51 ms
55,424 KB
testcase_19 AC 50 ms
55,424 KB
testcase_20 AC 50 ms
55,424 KB
testcase_21 AC 52 ms
55,424 KB
testcase_22 AC 52 ms
55,040 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