結果

問題 No.1260 たくさんの多項式
ユーザー 沙耶花沙耶花
提出日時 2020-10-16 22:21:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 202,448 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 22:14:08
合計ジャッジ時間 26,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 851 ms
5,376 KB
testcase_21 AC 224 ms
5,376 KB
testcase_22 AC 741 ms
5,376 KB
testcase_23 AC 591 ms
5,376 KB
testcase_24 AC 611 ms
5,376 KB
testcase_25 AC 482 ms
5,376 KB
testcase_26 AC 588 ms
5,376 KB
testcase_27 AC 452 ms
5,376 KB
testcase_28 AC 830 ms
5,376 KB
testcase_29 AC 608 ms
5,376 KB
testcase_30 AC 368 ms
5,376 KB
testcase_31 AC 675 ms
5,376 KB
testcase_32 AC 609 ms
5,376 KB
testcase_33 AC 502 ms
5,376 KB
testcase_34 AC 811 ms
5,376 KB
testcase_35 AC 342 ms
5,376 KB
testcase_36 AC 304 ms
5,376 KB
testcase_37 AC 604 ms
5,376 KB
testcase_38 AC 667 ms
5,376 KB
testcase_39 AC 803 ms
5,376 KB
testcase_40 AC 606 ms
5,376 KB
testcase_41 AC 777 ms
5,376 KB
testcase_42 AC 565 ms
5,376 KB
testcase_43 AC 803 ms
5,376 KB
testcase_44 AC 507 ms
5,376 KB
testcase_45 AC 470 ms
5,376 KB
testcase_46 AC 428 ms
5,376 KB
testcase_47 AC 603 ms
5,376 KB
testcase_48 AC 103 ms
5,376 KB
testcase_49 AC 402 ms
5,376 KB
testcase_50 AC 202 ms
5,376 KB
testcase_51 AC 801 ms
5,376 KB
testcase_52 AC 261 ms
5,376 KB
testcase_53 AC 365 ms
5,376 KB
testcase_54 AC 816 ms
5,376 KB
testcase_55 AC 870 ms
5,376 KB
testcase_56 AC 390 ms
5,376 KB
testcase_57 AC 586 ms
5,376 KB
testcase_58 AC 341 ms
5,376 KB
testcase_59 AC 600 ms
5,376 KB
testcase_60 AC 862 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

mint ans = 0;
long long N;

void go(long long a,long long b,long long n){
	a+=b;
	mint temp = a;
	temp *= n;
	temp /= 2;
	ans += temp;
}

void check(long long now){
	while(now<=N){
		long long ok = now;
		long long ng = N+1;
		while(ng-ok>1){
			long long mid = (ok+ng)/2;
			if(N/now != N/mid)ng = mid;
			else ok = mid;
		}
		long long cnt = ok-now+1;
		mint temp = N/now;
		temp *= cnt;
		ans += temp;
		go(N%now,N%ok,cnt);
		now = ok+1;
	}
}

int main(){	
	
	
	cin>>N;
	
	for(long long i=2;true;i++){
		if(i*i>N){
			check(i);
			break;
		}
		else{
			long long temp = N;
			while(temp!=0){
				ans += temp%i;
				temp /= i;
			}
		}
	}
	
	cout<<ans.val()<<endl;
	
    return 0;
}

0