結果

問題 No.176 2種類の切手
ユーザー htensaihtensai
提出日時 2020-01-14 20:13:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 885 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-07 20:59:36
合計ジャッジ時間 7,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,100 KB
testcase_01 AC 119 ms
41,116 KB
testcase_02 AC 116 ms
41,304 KB
testcase_03 AC 114 ms
41,068 KB
testcase_04 AC 135 ms
41,516 KB
testcase_05 AC 118 ms
41,052 KB
testcase_06 AC 115 ms
40,996 KB
testcase_07 AC 122 ms
41,264 KB
testcase_08 AC 120 ms
41,132 KB
testcase_09 AC 119 ms
41,260 KB
testcase_10 AC 119 ms
41,252 KB
testcase_11 AC 108 ms
40,204 KB
testcase_12 AC 108 ms
39,688 KB
testcase_13 AC 121 ms
41,360 KB
testcase_14 AC 124 ms
40,988 KB
testcase_15 AC 122 ms
41,176 KB
testcase_16 AC 123 ms
41,260 KB
testcase_17 AC 122 ms
41,376 KB
testcase_18 AC 108 ms
39,892 KB
testcase_19 AC 118 ms
40,808 KB
testcase_20 AC 114 ms
40,964 KB
testcase_21 AC 99 ms
39,552 KB
testcase_22 AC 120 ms
41,388 KB
testcase_23 AC 115 ms
41,328 KB
testcase_24 AC 121 ms
41,448 KB
testcase_25 AC 117 ms
40,804 KB
testcase_26 AC 114 ms
41,304 KB
testcase_27 AC 118 ms
41,312 KB
testcase_28 AC 106 ms
39,940 KB
testcase_29 AC 119 ms
41,356 KB
testcase_30 AC 115 ms
41,448 KB
testcase_31 AC 106 ms
39,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextInt();
        long b = sc.nextInt();
        long t = sc.nextInt();
        long lcm = a / gcd(a, b) * b;
        long total = t % lcm;
        if (lcm < t) {
            total += lcm;
        }
        long min = Long.MAX_VALUE;
        if (b > a) {
            long tmp = b;
            b = a;
            a = tmp;
        }
        for (int i = 0; i * a < total; i++) {
            min = Math.min(min, (total - i * a + b - 1) / b * b - total + i * a);
        }
        min = Math.min(min, (total + a - 1) / a * a - total);
        System.out.println(t + min);
    }
    
    static long gcd(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return gcd(y, x % y);
        }
    }
}
0