結果

問題 No.2300 Substring OR Sum
ユーザー ああいいああいい
提出日時 2023-05-12 22:16:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-05-06 12:20:58
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 101 ms
79,616 KB
testcase_04 AC 94 ms
75,648 KB
testcase_05 AC 99 ms
79,104 KB
testcase_06 AC 82 ms
72,064 KB
testcase_07 AC 194 ms
107,648 KB
testcase_08 AC 117 ms
84,736 KB
testcase_09 AC 104 ms
80,896 KB
testcase_10 AC 156 ms
100,736 KB
testcase_11 AC 173 ms
103,936 KB
testcase_12 AC 182 ms
107,520 KB
testcase_13 AC 125 ms
102,016 KB
testcase_14 AC 103 ms
97,024 KB
testcase_15 AC 117 ms
86,272 KB
testcase_16 AC 158 ms
100,480 KB
testcase_17 AC 186 ms
107,520 KB
testcase_18 AC 42 ms
51,712 KB
testcase_19 AC 41 ms
51,712 KB
testcase_20 AC 41 ms
51,712 KB
testcase_21 AC 41 ms
51,712 KB
testcase_22 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int,input().split()))

ans = 0
for i in range(28):
    tmp = 0
    j = 0
    while j < N:
        if A[j] >> i & 1 == 0:
            count = 1
            j += 1
            while j < N  and A[j] >> i & 1 == 0:
                j += 1
                count += 1
            tmp += count * (count + 1) // 2
        else:
            j += 1
    ans += (N * (N + 1) // 2 - tmp) * (1 << i)
print(ans)
            
0