結果

問題 No.1517 Party Location
ユーザー 遭難者遭難者
提出日時 2021-05-05 01:21:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-06-11 10:47:33
合計ジャッジ時間 4,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,296 KB
testcase_01 AC 108 ms
41,196 KB
testcase_02 AC 110 ms
41,296 KB
testcase_03 AC 106 ms
41,096 KB
testcase_04 AC 106 ms
41,256 KB
testcase_05 AC 106 ms
41,104 KB
testcase_06 AC 119 ms
41,084 KB
testcase_07 AC 107 ms
41,168 KB
testcase_08 AC 108 ms
41,260 KB
testcase_09 AC 103 ms
40,156 KB
testcase_10 AC 112 ms
41,208 KB
testcase_11 AC 108 ms
41,068 KB
testcase_12 AC 99 ms
40,328 KB
testcase_13 AC 95 ms
39,664 KB
testcase_14 AC 102 ms
40,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Main {
  public static void main(String[] args){
    var sc = new java.util.Scanner(System.in);
    int d = sc.nextInt();
    int a = sc.nextInt();
    int b = sc.nextInt();
    int ans = (int) 1e9 + 7;
    for(int x = 0 ; x <= d ; x++)
      ans = Math.min(ans, x * a + (d - x) * b);
    System.out.println(ans);
  }
}
0