結果

問題 No.737 PopCount
ユーザー rlangevinrlangevin
提出日時 2023-10-06 12:45:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 1,124 bytes
コンパイル時間 952 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-07-26 15:22:47
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
76,160 KB
testcase_01 AC 74 ms
76,196 KB
testcase_02 AC 80 ms
76,396 KB
testcase_03 AC 78 ms
76,288 KB
testcase_04 AC 74 ms
76,596 KB
testcase_05 AC 72 ms
76,416 KB
testcase_06 AC 66 ms
75,920 KB
testcase_07 AC 74 ms
76,032 KB
testcase_08 AC 71 ms
76,416 KB
testcase_09 AC 74 ms
76,436 KB
testcase_10 AC 53 ms
70,016 KB
testcase_11 AC 58 ms
71,808 KB
testcase_12 AC 66 ms
76,048 KB
testcase_13 AC 63 ms
74,496 KB
testcase_14 AC 66 ms
76,160 KB
testcase_15 AC 56 ms
72,192 KB
testcase_16 AC 65 ms
74,752 KB
testcase_17 AC 79 ms
76,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10 ** 9 + 7
M = 65
ans = 0

def solve(k):
    pre0 = [0] * M
    pre1 = [0] * M
    pre0[0] = 1
    val = 0
    for j in range(M):
        n = (N >> (M - 1 - j)) & 1
        dp0 = [0] * M
        dp1 = [0] * M
        for i in range(M):
            if j == k:
                if n:
                    if i:
                        dp0[i] += pre0[i - 1]
                        dp1[i] += pre1[i - 1]
                else:
                    if i:
                        dp1[i] += pre1[i - 1]
                continue

            if n:
                dp1[i] += pre0[i] + pre1[i]
                if i:
                    dp0[i] += pre0[i - 1]
                    dp1[i] += pre1[i - 1]
            else:
                dp0[i] += pre0[i]
                dp1[i] += pre1[i]
                if i:
                    dp1[i] += pre1[i - 1]
        dp0, pre0 = pre0, dp0
        dp1, pre1 = pre1, dp1

    two = 1 << (M - 1 - k)
    for i in range(M):
        val += two * (pre0[i] + pre1[i]) * i
        val %= mod
    
    return val


for k in range(M):
    ans += solve(k)
    ans %= mod

print(ans)
0