結果

問題 No.737 PopCount
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-09 01:18:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 564 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-09 01:19:00
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,520 KB
testcase_01 AC 38 ms
11,520 KB
testcase_02 AC 38 ms
11,520 KB
testcase_03 AC 37 ms
11,520 KB
testcase_04 AC 38 ms
11,392 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 37 ms
11,648 KB
testcase_07 AC 37 ms
11,520 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 37 ms
11,520 KB
testcase_10 AC 37 ms
11,520 KB
testcase_11 AC 37 ms
11,520 KB
testcase_12 AC 37 ms
11,520 KB
testcase_13 AC 38 ms
11,392 KB
testcase_14 AC 37 ms
11,648 KB
testcase_15 AC 37 ms
11,392 KB
testcase_16 AC 36 ms
11,520 KB
testcase_17 AC 37 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from typing import Tuple


input = lambda: sys.stdin.readline().rstrip("\r\n")
mod = int(1e9 + 7)


def calc(higher: int) -> Tuple[int, int]:
    if higher == 0:
        return 0, 0
    if higher % 2:
        a, b = calc(higher - 1)
        p = (higher - 1).bit_count()
        a += (higher - 1) * p
        b += p
        return a % mod, b % mod
    a, b = calc(higher // 2)
    return (a * 2 + a * 2 + b + (higher // 2) ** 2) % mod, (b * 2 + higher // 2) % mod


if __name__ == "__main__":
    n = int(input())
    res, _ = calc(n + 1)
    print(res)
0