結果

問題 No.2939 Sigma Popcount Problem
ユーザー rlangevinrlangevin
提出日時 2024-10-19 11:48:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 513 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 255,820 KB
最終ジャッジ日時 2024-10-19 11:48:59
合計ジャッジ時間 20,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,500 KB
testcase_01 AC 44 ms
56,436 KB
testcase_02 AC 45 ms
54,848 KB
testcase_03 AC 44 ms
54,984 KB
testcase_04 AC 46 ms
56,660 KB
testcase_05 AC 44 ms
55,652 KB
testcase_06 AC 44 ms
55,424 KB
testcase_07 AC 45 ms
55,412 KB
testcase_08 TLE -
testcase_09 AC 1,045 ms
167,656 KB
testcase_10 AC 1,428 ms
192,152 KB
testcase_11 AC 1,472 ms
204,600 KB
testcase_12 AC 1,248 ms
179,416 KB
testcase_13 AC 1,074 ms
167,760 KB
testcase_14 AC 939 ms
157,552 KB
testcase_15 TLE -
testcase_16 AC 111 ms
79,552 KB
testcase_17 TLE -
testcase_18 AC 306 ms
94,916 KB
testcase_19 TLE -
testcase_20 AC 50 ms
63,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)
from functools import lru_cache
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

@lru_cache(maxsize=None)
def f(n):
    if n <= 0:
        return 0
    now = 0
    for i in range(1, 65):
        if 2 ** i - 1 > n:
            break
        now = 2 ** i - 1
    r = n - now
    return f(now // 2) * 2 + (now + 1) // 2 + f(r - 1) + r
            
            
T = int(input())
for _ in range(T):
    N = int(input())
    print(f(N))    
0