結果

問題 No.2300 Substring OR Sum
ユーザー titiatitia
提出日時 2023-05-12 22:50:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-11-28 19:26:23
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 80 ms
73,600 KB
testcase_04 AC 75 ms
71,936 KB
testcase_05 AC 82 ms
75,008 KB
testcase_06 AC 65 ms
67,968 KB
testcase_07 AC 164 ms
105,728 KB
testcase_08 AC 95 ms
79,104 KB
testcase_09 AC 85 ms
75,520 KB
testcase_10 AC 133 ms
97,152 KB
testcase_11 AC 158 ms
102,628 KB
testcase_12 AC 169 ms
105,472 KB
testcase_13 AC 113 ms
100,096 KB
testcase_14 AC 100 ms
96,384 KB
testcase_15 AC 98 ms
81,280 KB
testcase_16 AC 139 ms
97,280 KB
testcase_17 AC 164 ms
105,728 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 39 ms
51,456 KB
testcase_21 AC 39 ms
51,456 KB
testcase_22 AC 39 ms
51,584 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