結果

問題 No.2300 Substring OR Sum
ユーザー sepa38sepa38
提出日時 2023-05-12 21:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 259,908 KB
最終ジャッジ日時 2024-11-28 17:54:22
合計ジャッジ時間 10,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 344 ms
105,820 KB
testcase_04 AC 296 ms
99,328 KB
testcase_05 AC 361 ms
112,136 KB
testcase_06 AC 211 ms
81,152 KB
testcase_07 AC 1,136 ms
250,848 KB
testcase_08 AC 469 ms
128,980 KB
testcase_09 AC 388 ms
112,852 KB
testcase_10 AC 868 ms
208,360 KB
testcase_11 AC 1,007 ms
228,900 KB
testcase_12 AC 1,122 ms
251,304 KB
testcase_13 AC 360 ms
259,908 KB
testcase_14 AC 152 ms
103,968 KB
testcase_15 AC 515 ms
138,648 KB
testcase_16 AC 879 ms
208,376 KB
testcase_17 AC 1,100 ms
250,740 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n = int(input())
a = list(map(int, input().split()))
k = 28
ls = [[] for _ in range(k)]
for i in range(n):
  for j in range(k):
    if a[i] & (1 << j):
      ls[j].append(i)
ans = 0
for i in range(n):
  for j in range(k):
    if a[i] & (1 << j):
      ans += (n - i) * (1 << j)
      continue
    else:
      idx = bisect.bisect_right(ls[j], i)
      if idx < len(ls[j]):
        ans += (n - ls[j][idx]) * (1 << j)
print(ans)
0