結果

問題 No.2300 Substring OR Sum
ユーザー lloyzlloyz
提出日時 2023-05-12 22:43:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,400 KB
最終ジャッジ日時 2024-11-28 19:18:53
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 161 ms
87,444 KB
testcase_04 AC 138 ms
88,188 KB
testcase_05 AC 161 ms
93,976 KB
testcase_06 AC 113 ms
81,736 KB
testcase_07 AC 457 ms
132,044 KB
testcase_08 AC 204 ms
94,800 KB
testcase_09 AC 171 ms
94,792 KB
testcase_10 AC 366 ms
117,300 KB
testcase_11 AC 419 ms
128,708 KB
testcase_12 AC 458 ms
131,904 KB
testcase_13 AC 387 ms
146,400 KB
testcase_14 AC 335 ms
133,716 KB
testcase_15 AC 227 ms
101,740 KB
testcase_16 AC 362 ms
117,408 KB
testcase_17 AC 452 ms
132,340 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 40 ms
51,712 KB
testcase_22 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

Pow2 = [pow(2, i) for i in range(28)]
D = [[0 for _ in range(28)] for _ in range(n)]
for i in range(n):
    a = A[i]
    for j in range(28):
        a, r = divmod(a, 2)
        D[i][j] = r
ans = 0
for i in range(28):
    cnt = 0
    one_last_idx = -1
    for j in range(n):
        if D[j][i] == 1:
            one_last_idx = j
        ans += Pow2[i] * (one_last_idx + 1)
print(ans)
0