結果

問題 No.176 2種類の切手
ユーザー noko2250noko2250
提出日時 2015-04-18 14:29:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-10-08 03:13:30
合計ジャッジ時間 8,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 118 ms
52,888 KB
testcase_04 AC 116 ms
53,956 KB
testcase_05 AC 115 ms
53,968 KB
testcase_06 AC 118 ms
53,944 KB
testcase_07 AC 121 ms
53,848 KB
testcase_08 AC 120 ms
54,000 KB
testcase_09 AC 119 ms
53,828 KB
testcase_10 AC 123 ms
53,912 KB
testcase_11 AC 105 ms
52,848 KB
testcase_12 AC 119 ms
54,012 KB
testcase_13 AC 123 ms
54,068 KB
testcase_14 AC 115 ms
52,936 KB
testcase_15 AC 121 ms
54,156 KB
testcase_16 AC 120 ms
54,112 KB
testcase_17 AC 117 ms
52,780 KB
testcase_18 AC 120 ms
53,888 KB
testcase_19 AC 127 ms
53,924 KB
testcase_20 AC 121 ms
54,492 KB
testcase_21 AC 121 ms
53,956 KB
testcase_22 AC 122 ms
53,956 KB
testcase_23 AC 124 ms
53,744 KB
testcase_24 AC 121 ms
54,056 KB
testcase_25 AC 119 ms
53,864 KB
testcase_26 WA -
testcase_27 AC 115 ms
54,144 KB
testcase_28 AC 122 ms
53,812 KB
testcase_29 AC 115 ms
53,860 KB
testcase_30 AC 127 ms
53,916 KB
testcase_31 AC 120 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class no176 {
void run() {
	Scanner sc = new Scanner(System.in);
	long A, B, T;
	A = sc.nextInt();
	B = sc.nextInt();
	T = sc.nextInt();
	long ans = Long.MAX_VALUE;
	for (int i = 0; A*i <= T+A && i <= A; i++) {
		ans = Math.min(ans, A*i + (T-A*i+B-1)/B * B);
	}
	System.out.println(ans);
}

void debug(Object... o) {
	System.out.println(Arrays.deepToString(o));
}

public static void main(String[] args) {
	new no176().run();
}
}
0