結果

問題 No.1260 たくさんの多項式
ユーザー ayaoniayaoni
提出日時 2020-10-27 11:59:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-07-21 21:53:28
合計ジャッジ時間 8,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,904 KB
testcase_01 AC 45 ms
60,032 KB
testcase_02 AC 45 ms
60,160 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 47 ms
60,800 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 45 ms
61,312 KB
testcase_07 AC 44 ms
60,288 KB
testcase_08 AC 48 ms
60,288 KB
testcase_09 AC 46 ms
61,056 KB
testcase_10 AC 45 ms
60,032 KB
testcase_11 AC 45 ms
60,544 KB
testcase_12 AC 45 ms
60,416 KB
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 48 ms
61,056 KB
testcase_15 AC 45 ms
60,032 KB
testcase_16 AC 44 ms
60,160 KB
testcase_17 AC 45 ms
61,184 KB
testcase_18 AC 45 ms
60,416 KB
testcase_19 AC 45 ms
60,032 KB
testcase_20 AC 202 ms
75,520 KB
testcase_21 AC 90 ms
64,768 KB
testcase_22 AC 178 ms
73,728 KB
testcase_23 AC 155 ms
71,040 KB
testcase_24 AC 154 ms
71,552 KB
testcase_25 AC 133 ms
69,120 KB
testcase_26 AC 149 ms
71,936 KB
testcase_27 AC 127 ms
69,376 KB
testcase_28 AC 198 ms
75,520 KB
testcase_29 AC 157 ms
71,168 KB
testcase_30 AC 118 ms
67,072 KB
testcase_31 AC 157 ms
71,424 KB
testcase_32 AC 157 ms
71,680 KB
testcase_33 AC 136 ms
69,376 KB
testcase_34 AC 193 ms
75,776 KB
testcase_35 AC 110 ms
66,688 KB
testcase_36 AC 101 ms
66,688 KB
testcase_37 AC 153 ms
71,552 KB
testcase_38 AC 162 ms
73,344 KB
testcase_39 AC 191 ms
75,776 KB
testcase_40 AC 154 ms
71,168 KB
testcase_41 AC 181 ms
74,112 KB
testcase_42 AC 145 ms
70,144 KB
testcase_43 AC 192 ms
75,904 KB
testcase_44 AC 136 ms
69,376 KB
testcase_45 AC 132 ms
68,992 KB
testcase_46 AC 126 ms
68,352 KB
testcase_47 AC 147 ms
70,016 KB
testcase_48 AC 62 ms
62,208 KB
testcase_49 AC 117 ms
67,712 KB
testcase_50 AC 82 ms
64,256 KB
testcase_51 AC 191 ms
75,648 KB
testcase_52 AC 92 ms
65,024 KB
testcase_53 AC 111 ms
67,644 KB
testcase_54 AC 194 ms
75,392 KB
testcase_55 AC 207 ms
75,688 KB
testcase_56 AC 121 ms
67,328 KB
testcase_57 AC 149 ms
70,656 KB
testcase_58 AC 105 ms
66,816 KB
testcase_59 AC 155 ms
71,424 KB
testcase_60 AC 199 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())


N = I()
M = int(N**.5)
mod = 10**9+7

# Nのi進表記の桁和の総和

ans = 0
for i in range(2,M+1):
    a = N
    while a:
        ans += a % i
        a -= a % i
        a //= i
    ans %= mod

# N == q*i+r

for q in range(1,M+1):
    low,high = max(N//(q+1),M),N//q  # low < i <= high
    ans += (N+q)*(high-low)-q*(high*(high+1)//2-low*(low+1)//2)
    ans %= mod

print(ans)
0