結果

問題 No.268 ラッピング(Easy)
ユーザー nCk_cvnCk_cv
提出日時 2015-08-21 22:45:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 823 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-07-18 11:47:01
合計ジャッジ時間 4,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,416 KB
testcase_01 AC 126 ms
41,280 KB
testcase_02 AC 111 ms
40,724 KB
testcase_03 AC 118 ms
41,652 KB
testcase_04 AC 102 ms
40,028 KB
testcase_05 AC 115 ms
41,396 KB
testcase_06 AC 117 ms
41,496 KB
testcase_07 AC 115 ms
41,292 KB
testcase_08 AC 116 ms
41,408 KB
testcase_09 AC 117 ms
41,216 KB
testcase_10 AC 120 ms
41,144 KB
testcase_11 AC 114 ms
41,508 KB
testcase_12 AC 107 ms
40,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
	static int R;
	static int B;
	static int Y;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] l = new int[3];
		l[0] = sc.nextInt();
		l[1] = sc.nextInt();
		l[2] = sc.nextInt();
		R = sc.nextInt();
		B = sc.nextInt();
		Y = sc.nextInt();
		
		int min = check(l,new boolean[3],new int[3],0);
		System.out.println(min);
		
	}
	static int check(int[] a, boolean[] b, int[] c, int d) {
		if(d == 3) {
			return c[0] * 2 * R + c[2] * 2 * R + c[0] * 2 * B + c[1] * 2 * B + c[1] *2 * Y + c[2] * 2 * Y;
		}
		int min = Integer.MAX_VALUE;
		for(int i = 0; i < 3; i++) {
			if(b[i]) continue;
			b[i] = true; c[d] = a[i];
			min = Math.min(check(a,b,c,d+1), min);
			b[i] = false; c[d] = 0;
		}
		return min;
	}
}
0