結果

問題 No.176 2種類の切手
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-04 08:53:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 1,015 bytes
コンパイル時間 4,128 ms
コンパイル使用メモリ 78,868 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-10-08 03:07:24
合計ジャッジ時間 9,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,028 KB
testcase_01 AC 135 ms
41,152 KB
testcase_02 AC 136 ms
41,128 KB
testcase_03 AC 139 ms
41,044 KB
testcase_04 AC 135 ms
41,328 KB
testcase_05 AC 136 ms
41,268 KB
testcase_06 AC 137 ms
41,452 KB
testcase_07 AC 139 ms
41,336 KB
testcase_08 AC 136 ms
41,520 KB
testcase_09 AC 139 ms
41,268 KB
testcase_10 AC 136 ms
41,000 KB
testcase_11 AC 139 ms
41,780 KB
testcase_12 AC 137 ms
41,268 KB
testcase_13 AC 137 ms
41,208 KB
testcase_14 AC 139 ms
40,984 KB
testcase_15 AC 143 ms
41,308 KB
testcase_16 AC 139 ms
41,400 KB
testcase_17 AC 138 ms
41,644 KB
testcase_18 AC 141 ms
41,000 KB
testcase_19 AC 139 ms
41,024 KB
testcase_20 AC 133 ms
41,176 KB
testcase_21 AC 136 ms
41,252 KB
testcase_22 AC 136 ms
41,344 KB
testcase_23 AC 135 ms
41,272 KB
testcase_24 AC 135 ms
41,368 KB
testcase_25 AC 139 ms
41,716 KB
testcase_26 AC 137 ms
41,132 KB
testcase_27 AC 137 ms
41,312 KB
testcase_28 AC 134 ms
41,240 KB
testcase_29 AC 138 ms
41,344 KB
testcase_30 AC 138 ms
41,132 KB
testcase_31 AC 139 ms
41,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.176 2種類の切手

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No176 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int a = sc.nextInt();
        int b = sc.nextInt();
        int t = sc.nextInt();
        long min = Long.MAX_VALUE;
        if (a > b) {
            int temp = a; a = b; b = temp;
        }

        for (int i=0; ; i++) {
            int j = (t-b*i+a-1)/a;
            min = min(min,b*i+a*j);
            if (b*i > t || i > a) break;
        }

        out.println(min);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0