結果

問題 No.737 PopCount
ユーザー convexineqconvexineq
提出日時 2021-03-16 17:28:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 55,424 KB
最終ジャッジ日時 2024-11-08 02:46:13
合計ジャッジ時間 1,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,040 KB
testcase_01 AC 51 ms
54,400 KB
testcase_02 AC 51 ms
54,528 KB
testcase_03 AC 51 ms
54,528 KB
testcase_04 AC 51 ms
54,656 KB
testcase_05 AC 51 ms
54,912 KB
testcase_06 AC 52 ms
55,040 KB
testcase_07 AC 52 ms
55,040 KB
testcase_08 AC 52 ms
55,168 KB
testcase_09 AC 52 ms
54,912 KB
testcase_10 AC 51 ms
54,656 KB
testcase_11 AC 49 ms
54,656 KB
testcase_12 AC 48 ms
55,092 KB
testcase_13 AC 48 ms
55,424 KB
testcase_14 AC 46 ms
55,248 KB
testcase_15 AC 47 ms
54,912 KB
testcase_16 AC 48 ms
54,656 KB
testcase_17 AC 48 ms
55,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=None)
def f(n):
    # 返り値: sum(x*ppopcnt(x)), sum(popcnt(x))
    if n==0: return 0,0
    (a,b),(c,d) = f(n//2),f((n-1)//2)
    x = (n+n%2)//2
    return 2*(a+c) + d + x*x, b + d + x

n = int(input())
print(f(n)[0]%(10**9+7))
0