結果

問題 No.2300 Substring OR Sum
ユーザー qibqib
提出日時 2023-05-15 17:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-11-30 22:45:44
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 117 ms
83,616 KB
testcase_04 AC 100 ms
82,416 KB
testcase_05 AC 111 ms
85,248 KB
testcase_06 AC 82 ms
78,928 KB
testcase_07 AC 267 ms
107,648 KB
testcase_08 AC 136 ms
88,576 KB
testcase_09 AC 111 ms
84,864 KB
testcase_10 AC 204 ms
101,212 KB
testcase_11 AC 239 ms
103,856 KB
testcase_12 AC 265 ms
107,776 KB
testcase_13 AC 112 ms
102,252 KB
testcase_14 AC 91 ms
97,280 KB
testcase_15 AC 147 ms
89,984 KB
testcase_16 AC 200 ms
100,736 KB
testcase_17 AC 263 ms
107,392 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 35 ms
51,968 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

ans = 0
for d in range(28):
  l = None
  st = []
  for i in range(n):
    if l is None:
      if (a[i] >> d) & 1 == 0:
        l = i
    else:
      if (a[i] >> d) & 1 != 0:
        st.append((l, i - 1))
        l = None

  if not l is None:
    st.append((l, n - 1))

  cnt = n * (n + 1) // 2
  for l, r in st:
    cnt -= (r - l + 1) * (r - l + 2) // 2

  ans += (1 << d) * cnt

print(ans)
0