結果

問題 No.2300 Substring OR Sum
ユーザー miho-4miho-4
提出日時 2023-05-13 12:57:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 107,880 KB
最終ジャッジ日時 2024-11-29 06:14:07
合計ジャッジ時間 3,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,240 KB
testcase_01 AC 39 ms
51,696 KB
testcase_02 AC 39 ms
53,084 KB
testcase_03 AC 88 ms
75,228 KB
testcase_04 AC 81 ms
73,428 KB
testcase_05 AC 92 ms
76,156 KB
testcase_06 AC 69 ms
69,724 KB
testcase_07 AC 184 ms
107,516 KB
testcase_08 AC 105 ms
80,788 KB
testcase_09 AC 94 ms
77,740 KB
testcase_10 AC 155 ms
98,768 KB
testcase_11 AC 181 ms
104,216 KB
testcase_12 AC 194 ms
107,880 KB
testcase_13 AC 179 ms
102,096 KB
testcase_14 AC 94 ms
98,104 KB
testcase_15 AC 107 ms
83,944 KB
testcase_16 AC 161 ms
98,844 KB
testcase_17 AC 187 ms
107,468 KB
testcase_18 AC 39 ms
52,396 KB
testcase_19 AC 38 ms
52,392 KB
testcase_20 AC 39 ms
52,444 KB
testcase_21 AC 39 ms
52,140 KB
testcase_22 AC 38 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=list(map(int,input().split()))
ans=0
for bit in range(29):
  cnt=0
  for i in range(n):
    if L[i]>>bit&1:
      ans+=2**bit*(n-i)*(cnt+1)
      cnt=0
    else:
      cnt+=1
  
print(ans)
0