結果

問題 No.176 2種類の切手
ユーザー noko2250noko2250
提出日時 2015-04-18 14:31:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-10-08 03:14:03
合計ジャッジ時間 9,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 142 ms
41,208 KB
testcase_04 AC 140 ms
41,016 KB
testcase_05 AC 145 ms
41,108 KB
testcase_06 AC 144 ms
41,012 KB
testcase_07 AC 140 ms
41,104 KB
testcase_08 AC 142 ms
41,036 KB
testcase_09 AC 142 ms
40,916 KB
testcase_10 AC 143 ms
41,152 KB
testcase_11 AC 148 ms
40,980 KB
testcase_12 AC 141 ms
41,868 KB
testcase_13 AC 138 ms
41,324 KB
testcase_14 AC 139 ms
41,000 KB
testcase_15 AC 139 ms
40,988 KB
testcase_16 AC 140 ms
41,236 KB
testcase_17 AC 142 ms
41,112 KB
testcase_18 AC 138 ms
41,024 KB
testcase_19 AC 134 ms
41,060 KB
testcase_20 AC 139 ms
41,284 KB
testcase_21 AC 139 ms
41,140 KB
testcase_22 AC 145 ms
41,144 KB
testcase_23 AC 144 ms
41,036 KB
testcase_24 AC 142 ms
41,656 KB
testcase_25 AC 142 ms
41,128 KB
testcase_26 WA -
testcase_27 AC 142 ms
41,508 KB
testcase_28 AC 140 ms
41,268 KB
testcase_29 AC 144 ms
41,116 KB
testcase_30 AC 140 ms
41,244 KB
testcase_31 AC 144 ms
41,348 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 (long 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