結果

問題 No.2300 Substring OR Sum
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-12 21:57:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 1,494 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 258,296 KB
最終ジャッジ日時 2024-05-06 11:48:52
合計ジャッジ時間 5,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 139 ms
95,440 KB
testcase_04 AC 126 ms
91,484 KB
testcase_05 AC 144 ms
100,004 KB
testcase_06 AC 96 ms
79,360 KB
testcase_07 AC 378 ms
189,956 KB
testcase_08 AC 194 ms
116,164 KB
testcase_09 AC 166 ms
100,504 KB
testcase_10 AC 351 ms
162,508 KB
testcase_11 AC 387 ms
174,376 KB
testcase_12 AC 413 ms
190,032 KB
testcase_13 AC 373 ms
258,296 KB
testcase_14 AC 123 ms
98,432 KB
testcase_15 AC 210 ms
120,592 KB
testcase_16 AC 340 ms
162,588 KB
testcase_17 AC 371 ms
189,584 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 41 ms
51,584 KB
testcase_20 AC 42 ms
52,096 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
ans = 0

for i in range(28):

    l = []

    for ind,a in enumerate(A):
        if a >> i & 1:
            l.append(ind)

    l = l[::-1]
    count = 0
    for ind,a in enumerate(A):
        if a >> i & 1:
            count += n-l[-1]
            l.pop()
        elif l:
            count += n - l[-1]
    ans += count << i

print(ans)

0