結果

問題 No.1260 たくさんの多項式
ユーザー tanon710tanon710
提出日時 2020-10-17 02:00:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-21 01:40:23
合計ジャッジ時間 10,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,312 KB
testcase_01 AC 54 ms
61,056 KB
testcase_02 AC 53 ms
61,056 KB
testcase_03 AC 54 ms
61,440 KB
testcase_04 AC 54 ms
61,696 KB
testcase_05 AC 57 ms
61,056 KB
testcase_06 AC 56 ms
61,440 KB
testcase_07 AC 55 ms
61,184 KB
testcase_08 AC 53 ms
61,056 KB
testcase_09 AC 54 ms
61,696 KB
testcase_10 AC 54 ms
61,056 KB
testcase_11 AC 53 ms
61,056 KB
testcase_12 AC 53 ms
61,056 KB
testcase_13 AC 55 ms
61,696 KB
testcase_14 AC 57 ms
61,696 KB
testcase_15 AC 53 ms
60,928 KB
testcase_16 AC 53 ms
60,672 KB
testcase_17 AC 55 ms
61,312 KB
testcase_18 AC 54 ms
60,800 KB
testcase_19 AC 53 ms
61,312 KB
testcase_20 AC 242 ms
75,904 KB
testcase_21 AC 105 ms
65,152 KB
testcase_22 AC 213 ms
74,368 KB
testcase_23 AC 185 ms
71,936 KB
testcase_24 AC 189 ms
72,192 KB
testcase_25 AC 161 ms
69,632 KB
testcase_26 AC 181 ms
72,320 KB
testcase_27 AC 155 ms
69,888 KB
testcase_28 AC 238 ms
76,032 KB
testcase_29 AC 186 ms
72,192 KB
testcase_30 AC 138 ms
67,968 KB
testcase_31 AC 188 ms
72,064 KB
testcase_32 AC 187 ms
72,192 KB
testcase_33 AC 162 ms
70,016 KB
testcase_34 AC 231 ms
75,648 KB
testcase_35 AC 131 ms
67,584 KB
testcase_36 AC 125 ms
67,584 KB
testcase_37 AC 191 ms
72,064 KB
testcase_38 AC 202 ms
73,600 KB
testcase_39 AC 234 ms
75,776 KB
testcase_40 AC 188 ms
71,808 KB
testcase_41 AC 224 ms
76,032 KB
testcase_42 AC 177 ms
71,296 KB
testcase_43 AC 228 ms
76,032 KB
testcase_44 AC 165 ms
70,016 KB
testcase_45 AC 160 ms
69,888 KB
testcase_46 AC 151 ms
68,992 KB
testcase_47 AC 174 ms
70,912 KB
testcase_48 AC 77 ms
63,232 KB
testcase_49 AC 145 ms
68,608 KB
testcase_50 AC 100 ms
65,024 KB
testcase_51 AC 232 ms
75,904 KB
testcase_52 AC 113 ms
65,920 KB
testcase_53 AC 134 ms
68,096 KB
testcase_54 AC 236 ms
75,904 KB
testcase_55 AC 246 ms
75,904 KB
testcase_56 AC 140 ms
67,840 KB
testcase_57 AC 180 ms
71,296 KB
testcase_58 AC 132 ms
67,328 KB
testcase_59 AC 187 ms
71,808 KB
testcase_60 AC 245 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

n=int(input())
ans=0
for i in range(2,int(n**0.5)+1):
    tn=n
    while tn!=0:
        ans+=tn%i
        tn//=i
    ans%=mod
for i in range(1,int(n**0.5)+1):
    l=max(n//(i+1)+1,int(n**0.5)+1)
    r=n//i
    ans+=i*(r-l+1)
    ans+=i*(((r-l)*(r-l+1))//2)+(n%r)*(r-l+1)
    ans%=mod
print(ans)
0