結果

問題 No.2300 Substring OR Sum
ユーザー vwxyzvwxyz
提出日時 2024-08-15 09:59:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,793 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,580 KB
最終ジャッジ日時 2024-08-15 09:59:59
合計ジャッジ時間 17,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

def Run_Length(lst):
    run_length=[]
    if lst:
        prev=lst[0]
        cnt=1
        for x in lst[1:]:
            if x==prev:
                cnt+=1
            else:
                run_length.append((prev,cnt))
                prev=x
                cnt=1
        run_length.append((prev,cnt))
    return run_length

N=int(input())
A=list(map(int,input().split()))
ans=0
for b in range(30):
    cnt=N*(N+1)//2
    for a,c in Run_Length([a>>b&1 for a in A]):
        if a==0:
            cnt-=c*(c+1)//2
    ans+=cnt<<b
print(ans)
0