結果

問題 No.2300 Substring OR Sum
ユーザー flygonflygon
提出日時 2023-05-12 21:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 185,896 KB
最終ジャッジ日時 2024-05-06 11:21:29
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 146 ms
93,552 KB
testcase_04 AC 129 ms
90,948 KB
testcase_05 AC 154 ms
97,200 KB
testcase_06 AC 104 ms
81,920 KB
testcase_07 AC 428 ms
183,196 KB
testcase_08 AC 189 ms
107,232 KB
testcase_09 AC 154 ms
98,580 KB
testcase_10 AC 316 ms
150,832 KB
testcase_11 AC 387 ms
169,784 KB
testcase_12 AC 415 ms
183,224 KB
testcase_13 AC 140 ms
102,144 KB
testcase_14 AC 108 ms
97,920 KB
testcase_15 AC 194 ms
111,392 KB
testcase_16 AC 310 ms
148,948 KB
testcase_17 AC 421 ms
185,896 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 36 ms
51,584 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 36 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0
for i in range(30):
    b = []
    for j in range(n):
        tmp = (a[j]>>i)&1
        if not b:
            b.append([tmp,1])
        else:
            if b[-1][0] == tmp:
                b[-1][1] += 1
            else:
                b.append([tmp,1])
    tmp = n*(n+1)//2
    for bm, cnt in b:
        if bm == 1: continue
        tmp -= cnt*(cnt+1)//2
    ans += (1<<i)*tmp
print(ans)
0