結果

問題 No.176 2種類の切手
ユーザー kou6839kou6839
提出日時 2015-07-02 18:59:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 2,664 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-10-08 03:27:03
合計ジャッジ時間 7,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,996 KB
testcase_01 AC 126 ms
54,060 KB
testcase_02 AC 107 ms
53,076 KB
testcase_03 WA -
testcase_04 AC 124 ms
53,916 KB
testcase_05 AC 119 ms
53,916 KB
testcase_06 AC 109 ms
53,356 KB
testcase_07 AC 114 ms
54,048 KB
testcase_08 AC 122 ms
54,044 KB
testcase_09 AC 118 ms
53,784 KB
testcase_10 AC 123 ms
54,056 KB
testcase_11 AC 119 ms
53,832 KB
testcase_12 AC 108 ms
53,008 KB
testcase_13 WA -
testcase_14 AC 127 ms
54,032 KB
testcase_15 AC 119 ms
53,736 KB
testcase_16 AC 120 ms
53,956 KB
testcase_17 AC 118 ms
54,004 KB
testcase_18 AC 118 ms
54,196 KB
testcase_19 AC 110 ms
53,884 KB
testcase_20 AC 109 ms
52,840 KB
testcase_21 AC 107 ms
52,964 KB
testcase_22 AC 120 ms
53,884 KB
testcase_23 AC 125 ms
53,996 KB
testcase_24 AC 121 ms
53,868 KB
testcase_25 AC 124 ms
53,920 KB
testcase_26 AC 105 ms
52,700 KB
testcase_27 AC 103 ms
52,868 KB
testcase_28 AC 115 ms
54,260 KB
testcase_29 AC 106 ms
53,032 KB
testcase_30 AC 117 ms
54,248 KB
testcase_31 AC 116 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.print.Printable;
import java.time.Year;
import java.util.*;


public class Main {
	
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt();
		int B = sc.nextInt();
		int T = sc.nextInt();
		int min = 2000000000;
		for(int i=0;i*B<=T+B && i<=A;i++ ) min = Math.min(min, i*B+(T-i*B+A-1)/A*A);
		
		System.out.println(min);
	}

}
0