結果

問題 No.176 2種類の切手
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-25 20:57:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 1,416 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-09-22 15:08:08
合計ジャッジ時間 7,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,796 KB
testcase_01 AC 131 ms
54,176 KB
testcase_02 AC 131 ms
54,008 KB
testcase_03 AC 132 ms
54,344 KB
testcase_04 AC 132 ms
54,240 KB
testcase_05 AC 132 ms
53,976 KB
testcase_06 AC 134 ms
54,248 KB
testcase_07 AC 133 ms
54,208 KB
testcase_08 AC 134 ms
54,104 KB
testcase_09 AC 133 ms
54,232 KB
testcase_10 AC 133 ms
54,180 KB
testcase_11 AC 133 ms
54,096 KB
testcase_12 AC 132 ms
54,120 KB
testcase_13 AC 134 ms
54,016 KB
testcase_14 AC 132 ms
54,164 KB
testcase_15 AC 133 ms
54,228 KB
testcase_16 AC 132 ms
54,052 KB
testcase_17 AC 135 ms
54,168 KB
testcase_18 AC 132 ms
54,048 KB
testcase_19 AC 132 ms
54,052 KB
testcase_20 AC 133 ms
53,996 KB
testcase_21 AC 132 ms
54,276 KB
testcase_22 AC 134 ms
54,228 KB
testcase_23 AC 134 ms
54,152 KB
testcase_24 AC 135 ms
54,340 KB
testcase_25 AC 134 ms
54,160 KB
testcase_26 AC 132 ms
54,240 KB
testcase_27 AC 134 ms
54,136 KB
testcase_28 AC 135 ms
54,004 KB
testcase_29 AC 135 ms
54,052 KB
testcase_30 AC 141 ms
54,428 KB
testcase_31 AC 133 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long t = sc.nextLong();
    long ans = (long)Math.pow(10, 15);
    if(a <= 1000000) {
      for(int i = 0; i < a; i++) {
        if(b * i >= t) {
          ans = Math.min(ans, b * i);
        } else {
          long c = t - b * i;
          if(c % a == 0) {
            ans = t;
          } else {
            long d = a * (c / a + 1);
            ans = Math.min(ans, b * i + d);
          }
        }
      }
    } else {
      if(b <= 1000000) {
        for(int i = 0; i < b; i++) {
          if(a * i >= t) {
            ans = Math.min(ans, a * i);
          } else {
            long c = t - a * i;
            if(c % b == 0) {
              ans = t;
            } else {
              long d = b * (c / b + 1);
              ans = Math.min(ans, a * i + d);
            }
          }
        }        
      } else {
        for(int i = 0; i < 10000; i++) {
          if(b * i >= t) {
            ans = Math.min(ans, b * i);
          } else {
            long c = t - b * i;
            if(c % a == 0) {
              ans = t;
            } else {
              long d = a * (c / a + 1);
              ans = Math.min(ans, b * i + d);
            }
          }
        }        
      }
    }
    System.out.println(ans);
  }
}
0