結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 131 ms
93,568 KB
testcase_04 AC 114 ms
90,908 KB
testcase_05 AC 138 ms
97,516 KB
testcase_06 AC 91 ms
81,516 KB
testcase_07 AC 406 ms
183,192 KB
testcase_08 AC 172 ms
107,388 KB
testcase_09 AC 138 ms
98,452 KB
testcase_10 AC 297 ms
150,704 KB
testcase_11 AC 367 ms
169,840 KB
testcase_12 AC 395 ms
183,268 KB
testcase_13 AC 124 ms
102,272 KB
testcase_14 AC 103 ms
97,536 KB
testcase_15 AC 197 ms
111,268 KB
testcase_16 AC 299 ms
148,944 KB
testcase_17 AC 403 ms
185,984 KB
testcase_18 AC 35 ms
51,840 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 36 ms
52,252 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 35 ms
51,968 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