結果

問題 No.176 2種類の切手
ユーザー htensaihtensai
提出日時 2020-01-14 18:23:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 56,000 KB
最終ジャッジ日時 2024-06-07 17:36:41
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,976 KB
testcase_01 AC 114 ms
54,100 KB
testcase_02 AC 114 ms
54,268 KB
testcase_03 AC 116 ms
54,300 KB
testcase_04 AC 116 ms
54,100 KB
testcase_05 AC 107 ms
53,000 KB
testcase_06 AC 116 ms
54,156 KB
testcase_07 AC 105 ms
52,908 KB
testcase_08 AC 119 ms
54,068 KB
testcase_09 AC 119 ms
54,112 KB
testcase_10 AC 106 ms
52,812 KB
testcase_11 AC 108 ms
52,996 KB
testcase_12 AC 115 ms
54,144 KB
testcase_13 AC 119 ms
54,052 KB
testcase_14 AC 120 ms
53,908 KB
testcase_15 AC 122 ms
54,160 KB
testcase_16 AC 105 ms
52,964 KB
testcase_17 AC 106 ms
53,016 KB
testcase_18 AC 118 ms
54,200 KB
testcase_19 AC 106 ms
52,820 KB
testcase_20 AC 114 ms
54,120 KB
testcase_21 AC 120 ms
54,308 KB
testcase_22 AC 120 ms
54,200 KB
testcase_23 AC 112 ms
53,500 KB
testcase_24 AC 120 ms
53,936 KB
testcase_25 AC 121 ms
53,756 KB
testcase_26 WA -
testcase_27 AC 117 ms
54,132 KB
testcase_28 AC 120 ms
54,240 KB
testcase_29 WA -
testcase_30 AC 116 ms
54,212 KB
testcase_31 AC 118 ms
54,104 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;
        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