結果

問題 No.2939 Sigma Popcount Problem
ユーザー nikoro256nikoro256
提出日時 2024-10-18 22:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 76,696 KB
最終ジャッジ日時 2024-10-18 22:52:16
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge6 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,068 KB
testcase_01 AC 35 ms
52,808 KB
testcase_02 AC 35 ms
52,704 KB
testcase_03 AC 35 ms
53,684 KB
testcase_04 AC 39 ms
52,532 KB
testcase_05 AC 36 ms
53,308 KB
testcase_06 AC 34 ms
52,636 KB
testcase_07 AC 35 ms
52,392 KB
testcase_08 AC 581 ms
76,424 KB
testcase_09 AC 265 ms
76,148 KB
testcase_10 AC 375 ms
76,696 KB
testcase_11 AC 355 ms
76,132 KB
testcase_12 AC 307 ms
76,532 KB
testcase_13 AC 278 ms
76,440 KB
testcase_14 AC 244 ms
76,316 KB
testcase_15 AC 626 ms
76,120 KB
testcase_16 AC 66 ms
71,120 KB
testcase_17 AC 579 ms
76,432 KB
testcase_18 AC 564 ms
76,180 KB
testcase_19 AC 590 ms
76,272 KB
testcase_20 AC 47 ms
62,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
exp2=[2**i for i in range(71)]
for _ in range(T):
    N=int(input())
    ans=0
    for i in range(70):
        tmp=(N+1)%exp2[i+1]
        ans+=((N+1)-tmp)//2+max(0,(N+1)%exp2[i+1]-exp2[i])
    print(ans)
0