結果

問題 No.2300 Substring OR Sum
ユーザー ニックネームニックネーム
提出日時 2023-05-12 21:41:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-11-28 17:44:56
合計ジャッジ時間 23,360 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 720 ms
24,044 KB
testcase_04 AC 618 ms
22,000 KB
testcase_05 AC 738 ms
24,992 KB
testcase_06 AC 393 ms
18,988 KB
testcase_07 TLE -
testcase_08 AC 1,002 ms
29,668 KB
testcase_09 AC 818 ms
25,828 KB
testcase_10 AC 1,841 ms
45,284 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 129 ms
14,756 KB
testcase_15 AC 1,101 ms
31,084 KB
testcase_16 AC 1,900 ms
43,760 KB
testcase_17 TLE -
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
17,572 KB
権限があれば一括ダウンロードができます

ソースコード

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