結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 21:53:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 167,248 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-13 21:53:46
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 WA -
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 WA -
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int __int128
using namespace std;
int n,a,b,ans=ULLONG_MAX;
int qread(){
	int w=1,ret;
	char c;
	while((c=getchar())>'9'||c<'0')w=(c=='-')?-1:1;
	ret=c-'0';
	while((c=getchar())>='0'&&c<='9')ret=ret*10+c-'0';
	return w*ret;
}
int fpow(int n,int k){
	int ret=1;
	for(;k;k>>=1){
		if(k&1)ret=ret*n;
		n=n*n;
	}
	return ret;
}
bool check(int x,int y){
	int z=1;
	while(y){
		if(z*x>n)return true;
		z*=x;
		y--;
	}
	return false;
}
signed main(){
	a=qread();
	b=qread();
	n=qread();
	for(int i=1;i<=63;i++){
		int l=1,r=n+1,z=1,res=0;
		while(l<r){
			int mid=(l+r)>>1;
			if(check(mid,i))r=mid;
			else l=mid+1;
		}
		z=fpow(r,i);
		res=i*(a+b*(r-1));
		for(int j=1;j<i;j++){
			if(z/r*(r-1)>n){
				z=z/r*(r-1);
				res-=b;
			}
			else break;
		}
		ans=min(res,ans);
	}
	printf("%lld\n",(long long)ans);
    return 0;
}
0