結果

問題 No.2300 Substring OR Sum
ユーザー timitimi
提出日時 2023-05-13 17:18:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,212 KB
最終ジャッジ日時 2024-11-29 09:16:45
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 168 ms
110,256 KB
testcase_04 AC 161 ms
107,264 KB
testcase_05 AC 177 ms
115,312 KB
testcase_06 AC 125 ms
93,184 KB
testcase_07 AC 462 ms
256,576 KB
testcase_08 AC 232 ms
128,616 KB
testcase_09 AC 179 ms
117,044 KB
testcase_10 AC 385 ms
212,252 KB
testcase_11 AC 419 ms
233,916 KB
testcase_12 AC 502 ms
258,820 KB
testcase_13 AC 310 ms
259,212 KB
testcase_14 AC 327 ms
258,208 KB
testcase_15 AC 216 ms
137,492 KB
testcase_16 AC 364 ms
215,584 KB
testcase_17 AC 456 ms
258,764 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
#N,A,B=map(int,input().split())
A=list(map(int, input().split()))
ans=0
for i in range(30):
  D=[]
  for a in A:
    if (a&(1<<i)):
      D.append(1)
    else:
      D.append(0)
  B=[]
  now=0
  for d in D:
    if d==0:
      now+=1 
    else:
      if now!=0:
        B.append(now)
      now=0
  if now!=0:
    B.append(now)
  c=N*(N+1)//2 
  for b in B:
    c-=b*(b+1)//2 
  ans+=pow(2,i)*c
print(ans)    
    
0