結果

問題 No.2939 Sigma Popcount Problem
ユーザー lif4635lif4635
提出日時 2024-10-18 21:28:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,046 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,784 KB
最終ジャッジ日時 2024-10-18 22:04:14
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,944 KB
testcase_01 AC 34 ms
52,728 KB
testcase_02 AC 35 ms
53,244 KB
testcase_03 AC 35 ms
53,240 KB
testcase_04 AC 37 ms
52,200 KB
testcase_05 AC 37 ms
52,504 KB
testcase_06 AC 37 ms
53,608 KB
testcase_07 AC 37 ms
53,708 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 333 ms
76,236 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def II() -> int : return int(input())
def MI() -> int : return map(int, input().split())
def TI() -> tuple[int] : return tuple(MI())
def LI() -> list[int] : return list(MI())
class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(p,self.n)
        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p+=p& -p
    def sum(self,l,r):
        assert (0<=l and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

t = II()

for _ in range(t):
    n = II() + 1
    ans = 0
    for i in range(30):
        s = 1<<i
        if n>>i & 1: #立っているとき
            ans += (n//(s*2)) * s
            ans += n%s 
        else:
            ans += (n//(s*2)) * s
    
    print(ans)
0