結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 22:01:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,267 bytes
コンパイル時間 1,086 ms
コンパイル使用メモリ 81,528 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-13 22:01:05
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 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 4 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 WA -
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<iostream>
#include<cmath>
#include<cstdio>
#include<cassert>
#define int __int128
using namespace std;
int qpow(int x,int y)
{
	if(y == 0) return 1;
	int k = qpow(x,y / 2);
	if(y & 1) return k * k * x;
	else return k * k;
}
inline int read()
{
	int x = 0, f = 1;
	char ch = getchar();
	while(!isdigit(ch))
	{
		if(ch == '-') f = -1;
		ch = getchar();
	}
	while(isdigit(ch))
	{
		x = (x << 3) + (x << 1) + (ch ^ 48);
		ch = getchar();
	}
	return x * f;
}
void write(__int128 x)
{
	if(x < 10) putchar('0' + x);
	else write(x / 10), putchar('0' + x % 10);
}
signed main()
{
	long long n,x,y;
	__int128 ans = 9e18 + 1 + 1;
//	n = read(); x = read(); y = read();
	cin >>  x >> y >> n;
	if(n == 0)
	{
		cout << 0 << endl;
		return 0;
	 } 
	int up = log(n) / log(2) + 1;
//	cout << up << endl;
	for(int i = 1; i <= up; i++)
	{
//		assert(pow(n,1.0 / i)>=0);
		int u = floor(pow(n,1.0 / i)) + 1, cnt = 0;
		__int128 xm = 1;
		for(int j = 1; j <= i; j++) xm *= u;
//		assert(xm>=0);
		while(xm >= n)
		{
			xm /= u;
			xm *= (u - 1);
			cnt++;
		}
		xm /= (u - 1);
		xm *= u;
//		assert(xm>=0);
		cnt--;
		ans = min(ans, (__int128)i * x + (__int128)cnt * (u - 2) * y + (__int128)(i - cnt) * (u - 1) * y);
//		assert(ans>=0);
	}
	write(ans);
cout << endl;
	return 0;
}
0