結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 09:33:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 199,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-13 09:33:51
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,x,y,ans=11451419181010086ll;
bool ck(int k1,int k2)
{
	__int128 r=1,d1,d2;
	d1=k2/k1+1;
	d2=k2%k1;
	for (int i=1;i<=d2;i++){
		r=r*(d1+1);
		if (r>=n){
			return 1;
		}
	}
	for (int i=1;i<=k1-d2;i++){
		r=r*d1;
		if (r>=n){
			return 1;
		}
	}
	return 0;
}
signed main()
{
	cin>>x>>y>>n;
if (n==1){
cout<<0;
return 0;
}
	for (int i=1;i<=70;i++){
		int l=1,r=1e9,dk=-1;
		while (l<=r){
			int mid=l+r>>1;
			if (ck(i,mid)){
				dk=mid;
				r=mid-1;
			}else{
				l=mid+1;
			} 
		}
		if (dk!=-1){
			ans=min(ans,i*x+dk*y);
		}
	}
	cout<<ans;
}
/*
?????? + ?????? * 2
?????????????????? * 2. 
???????? 70 ?? 
????????
1*(a_1+1)*(a_2+1)*(a_3_1)*(a_4+1)...
???????????? 
?? x???? x+1 
*/
0