結果

問題 No.2300 Substring OR Sum
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 16:16:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 171,208 KB
最終ジャッジ日時 2024-09-13 16:17:38
合計ジャッジ時間 4,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 38 ms
52,596 KB
testcase_02 AC 37 ms
53,568 KB
testcase_03 AC 107 ms
91,240 KB
testcase_04 AC 97 ms
89,356 KB
testcase_05 AC 111 ms
93,744 KB
testcase_06 AC 78 ms
80,268 KB
testcase_07 AC 271 ms
132,416 KB
testcase_08 AC 134 ms
100,948 KB
testcase_09 AC 113 ms
93,584 KB
testcase_10 AC 212 ms
118,948 KB
testcase_11 AC 236 ms
122,108 KB
testcase_12 AC 273 ms
138,584 KB
testcase_13 AC 290 ms
171,208 KB
testcase_14 AC 138 ms
144,728 KB
testcase_15 AC 140 ms
103,232 KB
testcase_16 AC 223 ms
130,136 KB
testcase_17 AC 256 ms
129,664 KB
testcase_18 AC 37 ms
52,820 KB
testcase_19 AC 37 ms
52,692 KB
testcase_20 AC 38 ms
52,124 KB
testcase_21 AC 39 ms
52,628 KB
testcase_22 AC 37 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(a):
	l=[0]
	for v in a:
		if v==0:
			l[-1]+=1
		else:
			l+=[0]
	c=0
	for v in l:
		c+=(v+1)*v//2
	return (n+1)*n//2-c

g=0
for i in range(30):
	g+=solve([(v>>i)&1 for v in a])*(1<<i)

print(g)
0