結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 533 ms
16,592 KB
testcase_04 AC 408 ms
15,700 KB
testcase_05 AC 548 ms
16,768 KB
testcase_06 AC 286 ms
14,520 KB
testcase_07 AC 1,727 ms
31,768 KB
testcase_08 AC 727 ms
19,244 KB
testcase_09 AC 564 ms
17,500 KB
testcase_10 AC 1,344 ms
26,796 KB
testcase_11 AC 1,677 ms
29,736 KB
testcase_12 AC 1,727 ms
32,020 KB
testcase_13 AC 913 ms
32,580 KB
testcase_14 AC 761 ms
15,308 KB
testcase_15 AC 737 ms
19,828 KB
testcase_16 AC 1,314 ms
26,828 KB
testcase_17 AC 1,793 ms
31,252 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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