結果

問題 No.268 ラッピング(Easy)
ユーザー YamaKasaYamaKasa
提出日時 2018-09-08 14:59:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-05-09 15:14:01
合計ジャッジ時間 4,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,792 KB
testcase_01 AC 99 ms
41,104 KB
testcase_02 AC 100 ms
41,244 KB
testcase_03 AC 99 ms
41,080 KB
testcase_04 AC 101 ms
40,928 KB
testcase_05 AC 94 ms
40,496 KB
testcase_06 AC 92 ms
40,208 KB
testcase_07 AC 102 ms
40,980 KB
testcase_08 AC 103 ms
41,060 KB
testcase_09 AC 101 ms
41,152 KB
testcase_10 AC 101 ms
40,964 KB
testcase_11 AC 98 ms
40,984 KB
testcase_12 AC 100 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int L1 = scan.nextInt();
		int L2 = scan.nextInt();
		int L3 = scan.nextInt();
		int R = scan.nextInt();
		int B = scan.nextInt();
		int Y = scan.nextInt();
		scan.close();
		int[]k = new int[3];
		k[0] = 2 * (L1 + L2);
		k[1] = 2 * (L1 + L3);
		k[2] = 2 * (L2 + L3);
		int[][] a = {{0, 1, 2}, {0, 2, 1}, {1, 0, 2}, {1, 2, 0},
						{2, 0, 1}, {2, 1, 0}};
		int min = Integer.MAX_VALUE;
		for(int i = 0; i < 6; i++) {
			int t = R * k[a[i][0]] + B * k[a[i][1]] + Y * k[a[i][2]];
			if(min > t) {
				min = t;
			}
		}
		System.out.println(min);
	}
}
0