結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,592 KB
testcase_01 AC 105 ms
40,528 KB
testcase_02 AC 101 ms
40,208 KB
testcase_03 AC 103 ms
40,400 KB
testcase_04 AC 102 ms
40,428 KB
testcase_05 AC 119 ms
41,364 KB
testcase_06 AC 109 ms
40,092 KB
testcase_07 AC 109 ms
41,188 KB
testcase_08 AC 101 ms
40,000 KB
testcase_09 AC 98 ms
40,244 KB
testcase_10 AC 101 ms
40,240 KB
testcase_11 AC 110 ms
41,424 KB
testcase_12 AC 111 ms
40,936 KB
testcase_13 AC 111 ms
41,232 KB
testcase_14 AC 111 ms
41,248 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 x = a < b ? d : 0;
    int ans = x * a + (d - x) * b;
    System.out.println(ans);
  }
}
0