結果

問題 No.176 2種類の切手
ユーザー 37zigen37zigen
提出日時 2016-04-12 12:35:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-10-08 03:42:48
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,880 KB
testcase_01 AC 134 ms
54,020 KB
testcase_02 AC 135 ms
53,960 KB
testcase_03 AC 135 ms
54,212 KB
testcase_04 AC 139 ms
54,076 KB
testcase_05 AC 140 ms
53,884 KB
testcase_06 AC 142 ms
53,892 KB
testcase_07 AC 144 ms
54,128 KB
testcase_08 AC 142 ms
53,968 KB
testcase_09 AC 134 ms
54,140 KB
testcase_10 AC 134 ms
54,008 KB
testcase_11 AC 134 ms
53,920 KB
testcase_12 AC 132 ms
53,720 KB
testcase_13 AC 135 ms
54,124 KB
testcase_14 AC 132 ms
53,888 KB
testcase_15 AC 132 ms
54,180 KB
testcase_16 AC 131 ms
54,196 KB
testcase_17 AC 131 ms
54,044 KB
testcase_18 AC 131 ms
54,012 KB
testcase_19 AC 132 ms
54,240 KB
testcase_20 AC 136 ms
53,992 KB
testcase_21 AC 132 ms
54,236 KB
testcase_22 AC 133 ms
54,068 KB
testcase_23 AC 132 ms
52,928 KB
testcase_24 AC 133 ms
54,272 KB
testcase_25 AC 136 ms
53,844 KB
testcase_26 AC 132 ms
54,032 KB
testcase_27 AC 132 ms
54,172 KB
testcase_28 AC 131 ms
54,184 KB
testcase_29 AC 133 ms
54,144 KB
testcase_30 AC 133 ms
54,264 KB
testcase_31 AC 133 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		long a=sc.nextLong();
		long b=sc.nextLong();
		long n=sc.nextLong();
		
		long min=999999999999L;
		if(a<b){
			long d=a;
			a=b;
			b=d;
		}
		for(int i=0;i<=b;i++){
			min=Math.min(a*i+((n-a*i+b-1)/b)*b, min);
			if(a*i>n)break;
		}
		
		System.out.println(min);
	}
}
0