結果

問題 No.915 Plus Or Multiple Operation
ユーザー ks2mks2m
提出日時 2019-10-25 23:51:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 37,220 KB
最終ジャッジ日時 2024-04-24 18:50:27
合計ジャッジ時間 3,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,204 KB
testcase_01 AC 46 ms
36,692 KB
testcase_02 AC 49 ms
36,844 KB
testcase_03 AC 49 ms
36,716 KB
testcase_04 AC 47 ms
36,720 KB
testcase_05 AC 47 ms
37,136 KB
testcase_06 AC 47 ms
37,220 KB
testcase_07 AC 50 ms
36,936 KB
testcase_08 AC 47 ms
37,124 KB
testcase_09 AC 46 ms
37,128 KB
testcase_10 AC 49 ms
36,568 KB
testcase_11 AC 50 ms
36,704 KB
testcase_12 AC 48 ms
37,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int q = Integer.parseInt(sa[0]);
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			long a = Integer.parseInt(sa[0]);
			long b = Integer.parseInt(sa[1]);
			long c = Integer.parseInt(sa[2]);

			if (c == 1) {
				System.out.println(-1);
			} else {
				long ans1 = 0;
				while (a >= c * c) {
					if (a % c > 0) {
						ans1++;
					}
					a /= c;
					ans1++;
				}
				ans1 *= b;
				long ans2 = Long.MAX_VALUE;
				for (int j = 0; j < 3; j++) {
					long x = (long) Math.pow(c, j);
					if (x > a) {
						break;
					}
					long val1 = j;
					long val2 = (a / x + c - 2) / (c - 1);
					long val3 = (a % x + c - 2) / (c - 1);
					long val = val1 + val2 + val3;
					val *= b;
					ans2 = Math.min(ans2, val);
				}
				System.out.println(ans1 + ans2);
			}
		}
		br.close();
	}
}
0