結果

問題 No.737 PopCount
ユーザー convexineqconvexineq
提出日時 2021-03-16 17:22:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 55,680 KB
最終ジャッジ日時 2024-11-08 02:40:23
合計ジャッジ時間 2,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,656 KB
testcase_01 AC 49 ms
54,784 KB
testcase_02 AC 47 ms
55,040 KB
testcase_03 AC 49 ms
54,656 KB
testcase_04 AC 48 ms
55,056 KB
testcase_05 AC 49 ms
55,680 KB
testcase_06 AC 49 ms
55,552 KB
testcase_07 AC 49 ms
55,296 KB
testcase_08 AC 54 ms
55,552 KB
testcase_09 AC 50 ms
55,568 KB
testcase_10 AC 47 ms
54,272 KB
testcase_11 AC 48 ms
54,528 KB
testcase_12 AC 49 ms
55,680 KB
testcase_13 AC 50 ms
55,296 KB
testcase_14 AC 48 ms
55,432 KB
testcase_15 AC 47 ms
54,468 KB
testcase_16 AC 47 ms
54,784 KB
testcase_17 AC 49 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=None)
def f(n):
    if n==0: return 0
    return 2*f(n//2) + 2*f((n-1)//2) + g((n-1)//2) + ((n+n%2)//2)**2

@lru_cache(maxsize=None)
def g(n):
    if n==0: return 0
    return g(n//2) + g((n-1)//2) + (n+n%2)//2

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