結果

問題 No.2300 Substring OR Sum
ユーザー ニックネームニックネーム
提出日時 2023-05-12 21:41:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 85,752 KB
最終ジャッジ日時 2024-05-06 11:27:50
合計ジャッジ時間 16,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,256 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 650 ms
23,916 KB
testcase_04 AC 555 ms
22,004 KB
testcase_05 AC 684 ms
25,024 KB
testcase_06 AC 381 ms
18,864 KB
testcase_07 TLE -
testcase_08 AC 936 ms
29,412 KB
testcase_09 AC 738 ms
25,708 KB
testcase_10 AC 1,691 ms
45,236 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
m = max(a).bit_length()
b = [[-1] for _ in range(m)]
for i,v in enumerate(a):
    for j in range(m):
        if v>>j&1: b[j].append(i)
for i in range(m): b[i].append(n)
ans = ((1<<m)-1)*(n+1)*n//2
for i in range(m):
    for l,r in zip(b[i][:-1],b[i][1:]):
        ans -= (1<<i)*(r-l)*(r-l-1)//2
print(ans)
0