結果

問題 No.176 2種類の切手
ユーザー kou6839kou6839
提出日時 2015-07-02 19:01:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 83,724 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-10-08 03:27:18
合計ジャッジ時間 6,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,852 KB
testcase_01 AC 111 ms
53,164 KB
testcase_02 AC 117 ms
54,144 KB
testcase_03 AC 114 ms
53,964 KB
testcase_04 AC 114 ms
54,248 KB
testcase_05 AC 116 ms
53,976 KB
testcase_06 AC 119 ms
54,100 KB
testcase_07 AC 121 ms
54,116 KB
testcase_08 AC 118 ms
54,168 KB
testcase_09 AC 110 ms
52,900 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
54,212 KB
testcase_13 AC 110 ms
52,648 KB
testcase_14 AC 107 ms
52,668 KB
testcase_15 AC 115 ms
53,732 KB
testcase_16 AC 122 ms
53,984 KB
testcase_17 WA -
testcase_18 AC 123 ms
54,004 KB
testcase_19 AC 120 ms
53,976 KB
testcase_20 AC 118 ms
53,820 KB
testcase_21 AC 116 ms
54,120 KB
testcase_22 AC 118 ms
53,832 KB
testcase_23 AC 125 ms
53,936 KB
testcase_24 AC 132 ms
53,964 KB
testcase_25 WA -
testcase_26 AC 103 ms
52,620 KB
testcase_27 AC 115 ms
53,984 KB
testcase_28 AC 103 ms
54,044 KB
testcase_29 AC 119 ms
53,880 KB
testcase_30 AC 101 ms
52,680 KB
testcase_31 AC 112 ms
54,100 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);
		long A = sc.nextLong();
		long B = sc.nextLong();
		int T = sc.nextInt();
		long min = 2000000000;
		for(long i=0;i*B<=T && i<=A;i++ ) min = Math.min(min, i*B+(T-i*B+A-1)/A*A);
		
		System.out.println(min);
	}

}
0