結果

問題 No.2300 Substring OR Sum
ユーザー H20H20
提出日時 2023-05-19 09:24:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 258,920 KB
最終ジャッジ日時 2024-12-17 18:19:38
合計ジャッジ時間 8,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 36 ms
53,312 KB
testcase_02 AC 37 ms
52,316 KB
testcase_03 AC 215 ms
89,640 KB
testcase_04 AC 191 ms
89,960 KB
testcase_05 AC 226 ms
91,480 KB
testcase_06 AC 140 ms
83,612 KB
testcase_07 AC 610 ms
135,872 KB
testcase_08 AC 286 ms
99,048 KB
testcase_09 AC 236 ms
92,232 KB
testcase_10 AC 516 ms
125,736 KB
testcase_11 AC 607 ms
137,100 KB
testcase_12 AC 615 ms
136,096 KB
testcase_13 AC 472 ms
258,920 KB
testcase_14 AC 549 ms
258,736 KB
testcase_15 AC 296 ms
97,888 KB
testcase_16 AC 519 ms
126,032 KB
testcase_17 AC 612 ms
142,672 KB
testcase_18 AC 37 ms
52,812 KB
testcase_19 AC 38 ms
54,300 KB
testcase_20 AC 36 ms
52,220 KB
testcase_21 AC 35 ms
52,616 KB
testcase_22 AC 35 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int,input().split()))
ans = (2**28-1)*(N)*(N+1)//2
for i in range(28):
    temp = 0
    B = []
    for a in A:
        B.append(a&2**i>0)
    GB = itertools.groupby(B)
    for k,l in GB:
        if k==0:
            le = len(list(l))
            ans-=2**i*(le)*(le+1)//2
print(ans)
0