結果

問題 No.2300 Substring OR Sum
ユーザー koarakko5555koarakko5555
提出日時 2023-05-13 11:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 107,740 KB
最終ジャッジ日時 2024-11-29 05:07:51
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,056 KB
testcase_01 AC 33 ms
52,564 KB
testcase_02 AC 33 ms
53,504 KB
testcase_03 AC 70 ms
74,308 KB
testcase_04 AC 67 ms
73,364 KB
testcase_05 AC 75 ms
76,752 KB
testcase_06 AC 55 ms
68,748 KB
testcase_07 AC 148 ms
107,740 KB
testcase_08 AC 83 ms
79,732 KB
testcase_09 AC 75 ms
77,844 KB
testcase_10 AC 127 ms
99,196 KB
testcase_11 AC 139 ms
104,276 KB
testcase_12 AC 143 ms
107,652 KB
testcase_13 AC 108 ms
102,168 KB
testcase_14 AC 83 ms
97,924 KB
testcase_15 AC 84 ms
82,876 KB
testcase_16 AC 121 ms
98,840 KB
testcase_17 AC 141 ms
107,540 KB
testcase_18 AC 34 ms
52,064 KB
testcase_19 AC 35 ms
52,676 KB
testcase_20 AC 35 ms
52,956 KB
testcase_21 AC 34 ms
52,320 KB
testcase_22 AC 35 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
ans = 0
all = N*(N+1)//2

for keta in range(28):
    cnt = 0
    ng = 0
    for i in range(N):
        if (A[i]>>keta)&1:
            ng += cnt*(cnt+1)//2
            cnt = 0
        else:
            cnt += 1
    ng += cnt*(cnt+1)//2
    ans += (1<<keta)*(all-ng)
print(ans)

0