結果

問題 No.1517 Party Location
ユーザー ks2mks2m
提出日時 2021-05-28 20:49:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-06-11 10:52:36
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,968 KB
testcase_01 AC 118 ms
41,012 KB
testcase_02 AC 121 ms
41,144 KB
testcase_03 AC 119 ms
41,532 KB
testcase_04 AC 120 ms
41,092 KB
testcase_05 AC 120 ms
41,276 KB
testcase_06 AC 118 ms
41,152 KB
testcase_07 AC 112 ms
41,424 KB
testcase_08 AC 102 ms
40,028 KB
testcase_09 AC 112 ms
41,024 KB
testcase_10 AC 110 ms
39,740 KB
testcase_11 AC 103 ms
40,004 KB
testcase_12 AC 119 ms
41,224 KB
testcase_13 AC 109 ms
40,376 KB
testcase_14 AC 112 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int a = sc.nextInt();
		int b = sc.nextInt();
		sc.close();

		int ans = Integer.MAX_VALUE;
		for (int x = 0; x <= d; x++) {
			int c = x * a + (d - x) * b;
			ans = Math.min(ans, c);
		}
		System.out.println(ans);
	}
}
0