結果

問題 No.1862 Copy and Paste
ユーザー fumofumofunifumofumofuni
提出日時 2022-03-04 22:59:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 71,500 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 21:35:11
合計ジャッジ時間 20,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1,170 ms
6,940 KB
testcase_10 AC 37 ms
6,940 KB
testcase_11 AC 1,277 ms
6,944 KB
testcase_12 AC 629 ms
6,940 KB
testcase_13 AC 1,257 ms
6,940 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 520 ms
6,940 KB
testcase_16 AC 1,167 ms
6,940 KB
testcase_17 AC 487 ms
6,940 KB
testcase_18 AC 268 ms
6,940 KB
testcase_19 AC 1,231 ms
6,944 KB
testcase_20 AC 1,047 ms
6,944 KB
testcase_21 AC 585 ms
6,940 KB
testcase_22 AC 1,060 ms
6,940 KB
testcase_23 AC 1,081 ms
6,940 KB
testcase_24 AC 1,407 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1,413 ms
6,944 KB
testcase_27 AC 1,395 ms
6,940 KB
testcase_28 AC 1,399 ms
6,944 KB
testcase_29 AC 1,002 ms
6,944 KB
testcase_30 AC 83 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
using ll=long long;
ll N, C, V;
int main() {
	cin >> C >> V >> N;
    if(N==1)cout << 0 << endl,exit(0);
	ll ret = 1LL << 62;
	for (ll i = 1; i <= 30; i++) {
		bool flag = false;
		for (ll j = 1; !flag; j++) {
			for (ll k = i; k >= 1; k--) {
				long long mul = 1;
				for (ll l = 0; l < k; l++) mul *= j;
				for (ll l = k; l < i; l++) mul *= j + 1;
				if (mul >= N) {
					ret = min(ret, (i * j - k) * V + C * i);
					flag = true; break;
				}
			}
		}
	}
	cout << ret << endl;
	return 0;
}
0