結果

問題 No.2300 Substring OR Sum
ユーザー qibqib
提出日時 2023-05-15 17:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 107,676 KB
最終ジャッジ日時 2024-05-08 01:15:51
合計ジャッジ時間 4,697 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 118 ms
83,968 KB
testcase_04 AC 98 ms
82,660 KB
testcase_05 AC 115 ms
84,480 KB
testcase_06 AC 87 ms
79,220 KB
testcase_07 AC 279 ms
107,676 KB
testcase_08 AC 141 ms
88,320 KB
testcase_09 AC 114 ms
84,992 KB
testcase_10 AC 205 ms
100,480 KB
testcase_11 AC 251 ms
104,064 KB
testcase_12 AC 277 ms
107,392 KB
testcase_13 AC 113 ms
102,016 KB
testcase_14 AC 89 ms
97,024 KB
testcase_15 AC 147 ms
89,728 KB
testcase_16 AC 206 ms
100,736 KB
testcase_17 AC 271 ms
107,392 KB
testcase_18 AC 36 ms
51,456 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 35 ms
51,840 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 36 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