結果

問題 No.915 Plus Or Multiple Operation
ユーザー BwambocosBwambocos
提出日時 2019-10-26 12:02:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 195,544 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 18:51:57
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define in std::cin
#define out std::cout
#define rep(i,N) for(LL i=0;i<N;++i)
typedef long long int LL;

int main()
{
	LL Q;
	in >> Q;
	std::vector<LL>A(Q), B(Q), C(Q);
	rep(i, Q) in >> A[i] >> B[i] >> C[i];

	rep(i, Q)
	{
		if (C[i] == 1) out << -1 << std::endl;
		else
		{
			LL cnt = 0, t = A[i], ans = 1145148101919;
			while (t > 0)
			{
				if (t % C[i] == 0)
				{
					t /= C[i];
					++cnt;
				}
				else
				{
					ans = std::min(ans, cnt + (t + C[i] - 2) / (C[i] - 1));
					t -= t % C[i];
					++cnt;
				}
			}
			ans = std::min(ans, cnt);

			out << ans * B[i] << std::endl;
		}
	}
}
0