結果

問題 No.176 2種類の切手
ユーザー htensaihtensai
提出日時 2019-11-27 09:08:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-07 18:08:06
合計ジャッジ時間 7,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,924 KB
testcase_01 AC 130 ms
41,244 KB
testcase_02 AC 128 ms
41,300 KB
testcase_03 AC 118 ms
40,272 KB
testcase_04 AC 127 ms
41,296 KB
testcase_05 AC 127 ms
41,520 KB
testcase_06 AC 115 ms
39,964 KB
testcase_07 AC 127 ms
41,028 KB
testcase_08 AC 127 ms
41,080 KB
testcase_09 AC 128 ms
41,112 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 125 ms
41,240 KB
testcase_13 AC 128 ms
41,280 KB
testcase_14 AC 128 ms
41,292 KB
testcase_15 AC 126 ms
41,392 KB
testcase_16 AC 113 ms
39,904 KB
testcase_17 WA -
testcase_18 AC 127 ms
41,140 KB
testcase_19 AC 130 ms
41,212 KB
testcase_20 AC 131 ms
41,272 KB
testcase_21 AC 126 ms
41,012 KB
testcase_22 AC 120 ms
40,384 KB
testcase_23 AC 120 ms
41,024 KB
testcase_24 AC 131 ms
41,372 KB
testcase_25 WA -
testcase_26 AC 127 ms
41,436 KB
testcase_27 AC 131 ms
41,448 KB
testcase_28 AC 126 ms
41,120 KB
testcase_29 AC 126 ms
41,188 KB
testcase_30 AC 127 ms
41,380 KB
testcase_31 AC 127 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args)  {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextInt();
		long b = sc.nextInt();
		long t = sc.nextInt();
		long min = Long.MAX_VALUE;
		for (int i = 0; i <= a && b * i <= t; i++) {
		    long value = (t - b * i + a - 1) / a * a + b * i;
		    min = Math.min(value, min);
		}
		System.out.println(min);
	}
}
0