結果

問題 No.2300 Substring OR Sum
ユーザー prussian_coderprussian_coder
提出日時 2023-05-25 21:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 165,820 KB
最終ジャッジ日時 2024-12-24 11:38:38
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 103 ms
96,000 KB
testcase_04 AC 97 ms
90,624 KB
testcase_05 AC 112 ms
98,048 KB
testcase_06 AC 80 ms
80,256 KB
testcase_07 AC 242 ms
162,368 KB
testcase_08 AC 124 ms
110,208 KB
testcase_09 AC 110 ms
100,480 KB
testcase_10 AC 194 ms
153,856 KB
testcase_11 AC 221 ms
150,552 KB
testcase_12 AC 236 ms
163,060 KB
testcase_13 AC 187 ms
165,820 KB
testcase_14 AC 66 ms
83,072 KB
testcase_15 AC 134 ms
114,432 KB
testcase_16 AC 193 ms
154,368 KB
testcase_17 AC 239 ms
160,956 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 40 ms
51,968 KB
testcase_22 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
ans=0
t=1
M=max(A)
while t<=M:
	B=[a%2 for a in A]
	x = N*(N+1)//2
	a=0
	for b in B:
		if b:
			x-=a*(a+1)//2
			a=0
		else:
			a+=1
	x-=a*(a+1)//2
	ans+=t*x
	t*=2
	A=[a//2 for a in A]
print(ans)
0