結果

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

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define int __int128
using namespace std;
int n,a,b,ans=1e15;
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(){
	n=qread();
	a=qread();
	b=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",(long long)ans);
    return 0;
}
0