結果

問題 No.2939 Sigma Popcount Problem
ユーザー aa
提出日時 2024-10-19 00:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,460 KB
最終ジャッジ日時 2024-10-19 00:29:46
合計ジャッジ時間 6,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,428 KB
testcase_01 AC 33 ms
52,816 KB
testcase_02 AC 34 ms
52,012 KB
testcase_03 AC 35 ms
52,948 KB
testcase_04 AC 40 ms
53,232 KB
testcase_05 AC 35 ms
53,140 KB
testcase_06 AC 34 ms
52,028 KB
testcase_07 AC 34 ms
53,316 KB
testcase_08 AC 429 ms
76,976 KB
testcase_09 AC 232 ms
76,828 KB
testcase_10 AC 287 ms
77,404 KB
testcase_11 AC 310 ms
76,780 KB
testcase_12 AC 261 ms
77,460 KB
testcase_13 AC 231 ms
77,016 KB
testcase_14 AC 205 ms
76,844 KB
testcase_15 AC 478 ms
77,000 KB
testcase_16 AC 92 ms
76,668 KB
testcase_17 AC 446 ms
77,048 KB
testcase_18 AC 484 ms
77,188 KB
testcase_19 AC 458 ms
76,968 KB
testcase_20 AC 46 ms
61,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	n=int(input())
	print(sum([((n+1>>i)//2)*pow(2,i)+((n+1)>>i&1)*((n+1)%pow(2,i)) for i in range(40)]))
0