結果

問題 No.2300 Substring OR Sum
ユーザー titiatitia
提出日時 2023-05-12 22:50:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-05-06 12:53:55
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 80 ms
73,984 KB
testcase_04 AC 78 ms
72,320 KB
testcase_05 AC 85 ms
75,136 KB
testcase_06 AC 66 ms
68,480 KB
testcase_07 AC 165 ms
106,112 KB
testcase_08 AC 94 ms
78,976 KB
testcase_09 AC 91 ms
75,776 KB
testcase_10 AC 141 ms
97,200 KB
testcase_11 AC 155 ms
102,400 KB
testcase_12 AC 175 ms
105,812 KB
testcase_13 AC 122 ms
100,024 KB
testcase_14 AC 106 ms
97,024 KB
testcase_15 AC 107 ms
81,536 KB
testcase_16 AC 146 ms
97,192 KB
testcase_17 AC 170 ms
105,600 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 39 ms
51,584 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

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