結果
| 問題 |
No.2300 Substring OR Sum
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
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)