結果

問題 No.176 2種類の切手
ユーザー kenkooookenkoooo
提出日時 2015-04-03 13:49:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 803 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 50,100 KB
最終ジャッジ日時 2024-10-08 03:02:24
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,744 KB
testcase_01 AC 57 ms
50,064 KB
testcase_02 AC 57 ms
49,944 KB
testcase_03 AC 56 ms
50,092 KB
testcase_04 AC 55 ms
50,012 KB
testcase_05 AC 54 ms
49,932 KB
testcase_06 AC 53 ms
49,956 KB
testcase_07 AC 54 ms
49,956 KB
testcase_08 AC 54 ms
49,756 KB
testcase_09 AC 56 ms
49,568 KB
testcase_10 AC 54 ms
49,952 KB
testcase_11 AC 54 ms
49,692 KB
testcase_12 AC 55 ms
49,756 KB
testcase_13 AC 53 ms
49,992 KB
testcase_14 AC 54 ms
49,928 KB
testcase_15 AC 54 ms
49,740 KB
testcase_16 AC 56 ms
49,904 KB
testcase_17 AC 55 ms
49,740 KB
testcase_18 AC 55 ms
49,940 KB
testcase_19 AC 54 ms
49,536 KB
testcase_20 AC 56 ms
49,728 KB
testcase_21 AC 55 ms
49,948 KB
testcase_22 AC 55 ms
50,064 KB
testcase_23 AC 54 ms
49,624 KB
testcase_24 AC 55 ms
50,064 KB
testcase_25 AC 54 ms
49,972 KB
testcase_26 AC 54 ms
49,800 KB
testcase_27 AC 54 ms
50,060 KB
testcase_28 AC 54 ms
49,716 KB
testcase_29 AC 55 ms
50,100 KB
testcase_30 AC 54 ms
49,968 KB
testcase_31 AC 55 ms
49,932 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;; i++) {
			int j = (T - B * i + A - 1) / A;
			long next = B * i + A * j;

			min = Math.min(min, next);
			if (B * i > T || i > A) {
				break;
			}
		}

		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