結果

問題 No.1260 たくさんの多項式
ユーザー ytftytft
提出日時 2021-05-15 16:58:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 8,250 ms
コンパイル使用メモリ 400,620 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-03 04:39:37
合計ジャッジ時間 25,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 7 ms
6,820 KB
testcase_02 AC 7 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 5 ms
6,816 KB
testcase_05 AC 8 ms
6,816 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 7 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 7 ms
6,816 KB
testcase_11 AC 6 ms
6,824 KB
testcase_12 AC 6 ms
6,816 KB
testcase_13 AC 8 ms
6,820 KB
testcase_14 AC 8 ms
6,816 KB
testcase_15 AC 6 ms
6,816 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 7 ms
6,816 KB
testcase_18 AC 8 ms
6,816 KB
testcase_19 AC 7 ms
6,820 KB
testcase_20 AC 573 ms
6,820 KB
testcase_21 AC 164 ms
6,816 KB
testcase_22 AC 501 ms
6,816 KB
testcase_23 AC 408 ms
6,820 KB
testcase_24 AC 422 ms
6,816 KB
testcase_25 AC 331 ms
6,816 KB
testcase_26 AC 396 ms
6,820 KB
testcase_27 AC 323 ms
6,816 KB
testcase_28 AC 556 ms
6,816 KB
testcase_29 AC 420 ms
6,816 KB
testcase_30 AC 266 ms
6,816 KB
testcase_31 AC 416 ms
6,816 KB
testcase_32 AC 421 ms
6,816 KB
testcase_33 AC 341 ms
6,820 KB
testcase_34 AC 542 ms
6,820 KB
testcase_35 AC 243 ms
6,816 KB
testcase_36 AC 220 ms
6,820 KB
testcase_37 AC 421 ms
6,820 KB
testcase_38 AC 450 ms
6,816 KB
testcase_39 AC 546 ms
6,820 KB
testcase_40 AC 414 ms
6,816 KB
testcase_41 AC 515 ms
6,820 KB
testcase_42 AC 381 ms
6,820 KB
testcase_43 AC 536 ms
6,816 KB
testcase_44 AC 350 ms
6,820 KB
testcase_45 AC 335 ms
6,816 KB
testcase_46 AC 306 ms
6,816 KB
testcase_47 AC 380 ms
6,816 KB
testcase_48 AC 79 ms
6,820 KB
testcase_49 AC 287 ms
6,820 KB
testcase_50 AC 150 ms
6,820 KB
testcase_51 AC 542 ms
6,816 KB
testcase_52 AC 184 ms
6,820 KB
testcase_53 AC 251 ms
6,820 KB
testcase_54 AC 553 ms
6,820 KB
testcase_55 AC 577 ms
6,820 KB
testcase_56 AC 267 ms
6,816 KB
testcase_57 AC 391 ms
6,820 KB
testcase_58 AC 243 ms
6,816 KB
testcase_59 AC 415 ms
6,820 KB
testcase_60 AC 586 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <boost/multiprecision/cpp_int.hpp>
typedef boost::multiprecision::cpp_int mp;


int main(){
    mp N;
    mp ans=0;
    mp MOD=1000000007;
    cin>>N;
    mp i=2;
    while(i*i<=N){
        mp temp=N;
        while(temp>0){
            ans=(ans+temp%i)%MOD;
            temp/=i;
        }
        ++i;
    }
    for(int j=1;j<=N;j++){
        mp M=N/j;
        mp m=N/(j+1)+1;
        if(M<i)break;
        if(m<i)m=i;
        ans=(ans+N*(M-m+1)-j*(M+m-2)*(M-m+1)/2)%MOD;
    }
    cout<<ans<<endl;
}
0