結果

問題 No.915 Plus Or Multiple Operation
ユーザー 37zigen37zigen
提出日時 2020-03-10 04:06:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-04-24 18:55:21
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,044 KB
testcase_01 AC 131 ms
41,520 KB
testcase_02 AC 126 ms
40,256 KB
testcase_03 AC 127 ms
40,292 KB
testcase_04 AC 140 ms
41,228 KB
testcase_05 AC 140 ms
41,172 KB
testcase_06 AC 141 ms
41,548 KB
testcase_07 AC 129 ms
41,288 KB
testcase_08 AC 130 ms
41,264 KB
testcase_09 AC 130 ms
41,252 KB
testcase_10 AC 126 ms
40,224 KB
testcase_11 AC 139 ms
41,420 KB
testcase_12 AC 126 ms
40,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	long solve(long A,long B,long C) {
		if(C==1&&A>1)return -1;
		long ans=0;
		while(A>0) {
			if(C<=A&&A<=2*C-2) {
				A=0;
				ans+=B;
			}else if(A%C!=0) {
				A-=A%C;
			}else {
				A/=C;
			}
			ans+=B;
		}
		return ans;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int Q=sc.nextInt();
		for(int q=0;q<Q;++q) {
			long A=sc.nextLong();
			long B=sc.nextLong();
			long C=sc.nextLong();
			System.out.println(solve(A,B,C));
		}
	}
}


0