結果

問題 No.2939 Sigma Popcount Problem
ユーザー Today03Today03
提出日時 2024-10-18 21:34:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,364 KB
最終ジャッジ日時 2024-10-18 22:22:37
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,492 KB
testcase_01 AC 34 ms
53,256 KB
testcase_02 AC 36 ms
52,372 KB
testcase_03 AC 36 ms
51,936 KB
testcase_04 AC 37 ms
52,880 KB
testcase_05 AC 35 ms
52,952 KB
testcase_06 AC 35 ms
52,432 KB
testcase_07 AC 37 ms
52,384 KB
testcase_08 AC 524 ms
76,032 KB
testcase_09 AC 241 ms
76,224 KB
testcase_10 AC 314 ms
76,228 KB
testcase_11 AC 322 ms
76,080 KB
testcase_12 AC 281 ms
75,992 KB
testcase_13 AC 246 ms
76,020 KB
testcase_14 AC 233 ms
76,176 KB
testcase_15 AC 523 ms
76,364 KB
testcase_16 AC 61 ms
67,036 KB
testcase_17 AC 514 ms
76,100 KB
testcase_18 AC 499 ms
76,252 KB
testcase_19 AC 543 ms
75,956 KB
testcase_20 AC 47 ms
59,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	N=int(input())+1

	ans=0
	for i in range(50):
		tw=2**i
		cnt=N//(tw*2)
		amr=N%(tw*2)
		ans+=cnt*tw
		ans+=max(amr-tw,0)

	print(ans)

0