結果

問題 No.2300 Substring OR Sum
ユーザー ShirotsumeShirotsume
提出日時 2023-02-28 23:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 259,652 KB
最終ジャッジ日時 2024-05-06 10:29:20
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,040 KB
testcase_01 AC 44 ms
55,040 KB
testcase_02 AC 49 ms
55,168 KB
testcase_03 AC 173 ms
138,872 KB
testcase_04 AC 156 ms
129,168 KB
testcase_05 AC 181 ms
148,908 KB
testcase_06 AC 118 ms
100,864 KB
testcase_07 AC 385 ms
165,744 KB
testcase_08 AC 209 ms
170,680 KB
testcase_09 AC 185 ms
146,660 KB
testcase_10 AC 308 ms
144,916 KB
testcase_11 AC 363 ms
155,376 KB
testcase_12 AC 385 ms
167,752 KB
testcase_13 AC 311 ms
259,652 KB
testcase_14 AC 287 ms
259,256 KB
testcase_15 AC 243 ms
184,316 KB
testcase_16 AC 318 ms
145,192 KB
testcase_17 AC 392 ms
164,228 KB
testcase_18 AC 45 ms
55,040 KB
testcase_19 AC 44 ms
55,040 KB
testcase_20 AC 45 ms
55,168 KB
testcase_21 AC 45 ms
54,784 KB
testcase_22 AC 44 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import random
n = ii()
a = li()
ans = (-1 + (1 << 30)) * (n * (n + 1) // 2)
for bit in range(30):
    b = []
    for v in a:
        if 1 & (v >> bit):
            b.append(1)
        else:
            b.append(0)
    cnt = 0
    b.append(1)
    for v in b:
        if v != 0:
            ans -= (1 << bit) * cnt * (cnt + 1) // 2
            cnt = 0
        else:
            cnt += 1
print(ans)
    

0