結果

問題 No.176 2種類の切手
ユーザー kenkooookenkoooo
提出日時 2015-04-03 13:44:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 52,016 KB
最終ジャッジ日時 2024-10-08 03:02:02
合計ジャッジ時間 5,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,576 KB
testcase_01 AC 48 ms
36,360 KB
testcase_02 AC 46 ms
36,472 KB
testcase_03 AC 49 ms
36,384 KB
testcase_04 AC 47 ms
36,728 KB
testcase_05 AC 47 ms
36,520 KB
testcase_06 AC 49 ms
36,380 KB
testcase_07 AC 47 ms
36,532 KB
testcase_08 AC 48 ms
36,468 KB
testcase_09 AC 48 ms
36,536 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 50 ms
36,448 KB
testcase_13 AC 48 ms
36,548 KB
testcase_14 AC 48 ms
36,288 KB
testcase_15 AC 49 ms
36,384 KB
testcase_16 AC 48 ms
36,156 KB
testcase_17 WA -
testcase_18 AC 49 ms
36,456 KB
testcase_19 AC 48 ms
36,476 KB
testcase_20 AC 48 ms
36,408 KB
testcase_21 AC 50 ms
36,560 KB
testcase_22 AC 49 ms
36,152 KB
testcase_23 AC 50 ms
36,440 KB
testcase_24 AC 49 ms
36,384 KB
testcase_25 WA -
testcase_26 AC 51 ms
36,468 KB
testcase_27 AC 49 ms
36,260 KB
testcase_28 AC 49 ms
36,436 KB
testcase_29 AC 50 ms
36,292 KB
testcase_30 AC 48 ms
36,544 KB
testcase_31 AC 49 ms
36,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;

public class Main {

	public static void main(String[] args) {
		int A = nextInt();
		int B = nextInt();
		int T = nextInt();
		long min = Long.MAX_VALUE;

		for (int i = 0; B * i <= T && i <= A; i++) {
			long next = B * i + (T - B * i) / A * A;
			if (next < T) {
				next += A;
			}

			min = Math.min(min, next);
		}

		System.out.println(min);

	}

	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while (c != '-' && (c < '0' || c > '9'))
				c = System.in.read();
			if (c == '-')
				return -nextInt();
			int res = 0;
			while (c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}
}
0