結果

問題 No.176 2種類の切手
ユーザー GrenacheGrenache
提出日時 2016-05-31 20:22:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 856 bytes
コンパイル時間 3,853 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-08 03:44:21
合計ジャッジ時間 8,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,852 KB
testcase_01 AC 126 ms
54,288 KB
testcase_02 AC 123 ms
54,300 KB
testcase_03 AC 122 ms
53,964 KB
testcase_04 AC 119 ms
53,932 KB
testcase_05 AC 121 ms
53,784 KB
testcase_06 AC 119 ms
53,916 KB
testcase_07 AC 108 ms
52,716 KB
testcase_08 AC 121 ms
53,816 KB
testcase_09 AC 110 ms
52,888 KB
testcase_10 AC 113 ms
53,356 KB
testcase_11 AC 125 ms
53,888 KB
testcase_12 AC 122 ms
53,960 KB
testcase_13 AC 108 ms
53,068 KB
testcase_14 AC 121 ms
53,912 KB
testcase_15 AC 118 ms
54,172 KB
testcase_16 AC 110 ms
52,708 KB
testcase_17 AC 121 ms
53,972 KB
testcase_18 AC 127 ms
53,908 KB
testcase_19 AC 126 ms
54,000 KB
testcase_20 AC 116 ms
53,240 KB
testcase_21 AC 118 ms
53,520 KB
testcase_22 AC 123 ms
53,792 KB
testcase_23 AC 127 ms
53,876 KB
testcase_24 AC 122 ms
53,892 KB
testcase_25 AC 127 ms
54,164 KB
testcase_26 AC 127 ms
53,976 KB
testcase_27 AC 124 ms
53,944 KB
testcase_28 AC 124 ms
53,952 KB
testcase_29 AC 120 ms
53,916 KB
testcase_30 AC 121 ms
54,164 KB
testcase_31 AC 121 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder176 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        int b = sc.nextInt();
        int t = sc.nextInt();

        int m  = (t + b - 1) / b;

        long l = ((long)t / lcm(a, b) - 1) * lcm(a, b) / b;

        int min = Integer.MAX_VALUE;
        for (int i = m; i >= 0 && i >= l; i--) {
        	if (i * b >= t) {
        		min = Math.min(min, i * b);
        	} else {
        		min = Math.min(min, (t - i * b + a - 1) / a * a + i * b);
        	}
        }

        System.out.println(min);

        sc.close();
    }

    private static long lcm(int n, int m) {
		return (long)n / gcd(n, m) * m;
	}

	private static int gcd(int n, int m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}
}
0