結果

問題 No.1260 たくさんの多項式
ユーザー tamatotamato
提出日時 2020-10-16 23:26:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 963 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-21 00:03:43
合計ジャッジ時間 9,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,000 KB
testcase_01 WA -
testcase_02 AC 49 ms
65,280 KB
testcase_03 AC 47 ms
63,104 KB
testcase_04 AC 47 ms
62,848 KB
testcase_05 AC 50 ms
66,176 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 49 ms
64,512 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 49 ms
65,152 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 49 ms
65,400 KB
testcase_16 AC 47 ms
62,592 KB
testcase_17 AC 50 ms
65,664 KB
testcase_18 WA -
testcase_19 AC 50 ms
65,920 KB
testcase_20 AC 198 ms
75,492 KB
testcase_21 WA -
testcase_22 AC 184 ms
75,932 KB
testcase_23 WA -
testcase_24 AC 162 ms
75,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 194 ms
76,032 KB
testcase_29 AC 158 ms
75,648 KB
testcase_30 AC 121 ms
75,776 KB
testcase_31 AC 165 ms
75,776 KB
testcase_32 AC 159 ms
75,776 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 113 ms
75,520 KB
testcase_37 WA -
testcase_38 AC 181 ms
76,032 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 189 ms
75,664 KB
testcase_42 AC 161 ms
75,776 KB
testcase_43 AC 202 ms
75,992 KB
testcase_44 AC 151 ms
75,520 KB
testcase_45 WA -
testcase_46 AC 137 ms
75,520 KB
testcase_47 AC 156 ms
75,520 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 98 ms
75,520 KB
testcase_51 WA -
testcase_52 AC 102 ms
75,656 KB
testcase_53 WA -
testcase_54 AC 189 ms
75,520 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 119 ms
75,892 KB
testcase_59 AC 161 ms
75,716 KB
testcase_60 AC 197 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def digit_sum(n, k):
        ret = 0
        while n:
            ret = (ret + n % k)%mod
            n //= k
        return ret

    N = int(input())

    if N == 3:
        print(3)
        exit()

    """
    # gutyoku
    ans_ = 0
    for i in range(2, N+1):
        ans_ = (ans_ + digit_sum(N, i))%mod
    print(ans_)
    """


    inv_2 = (mod + 1)//2
    ans = 0
    ii = -1
    for i in range(2, N+1):
        if i * i > N:
            ii = i - 1
            break
        ans = (ans + digit_sum(N, i))%mod
    if ii > 0:
        j_min = ii + 1
        for i in range(ii - 1, 0, -1):
            j_max = N // i
            L = j_max - j_min + 1
            ans = (ans + i * L)%mod
            ans = (ans + (((N - i * j_min) + (N - i * j_max))%mod * (L * inv_2)%mod)%mod)%mod
            j_min = j_max + 1
    print(ans)


if __name__ == '__main__':
    main()
0