結果

問題 No.2300 Substring OR Sum
ユーザー 👑 rin204rin204
提出日時 2024-03-16 16:06:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 108,188 KB
最終ジャッジ日時 2024-09-30 04:05:10
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 79 ms
74,368 KB
testcase_04 AC 75 ms
72,704 KB
testcase_05 AC 80 ms
75,776 KB
testcase_06 AC 63 ms
68,480 KB
testcase_07 AC 158 ms
108,188 KB
testcase_08 AC 91 ms
79,872 KB
testcase_09 AC 83 ms
76,288 KB
testcase_10 AC 133 ms
98,300 KB
testcase_11 AC 147 ms
104,320 KB
testcase_12 AC 160 ms
107,648 KB
testcase_13 AC 113 ms
102,112 KB
testcase_14 AC 94 ms
97,280 KB
testcase_15 AC 99 ms
82,688 KB
testcase_16 AC 133 ms
99,200 KB
testcase_17 AC 159 ms
107,684 KB
testcase_18 AC 37 ms
51,712 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(30):
    tot = 0
    row = 0
    for a in A:
        if a >> i & 1:
            tot += row * (row + 1) // 2
            row = 0
        else:
            row += 1
    tot += row * (row + 1) // 2
    ans += (n * (n + 1) // 2 - tot) * (1 << i)
print(ans)
0