結果

問題 No.967 引き算をして門松列(その2)
ユーザー ks2mks2m
提出日時 2020-01-13 21:35:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,401 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 45,560 KB
最終ジャッジ日時 2024-06-02 05:36:59
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,156 KB
testcase_01 AC 47 ms
36,536 KB
testcase_02 AC 49 ms
36,928 KB
testcase_03 AC 203 ms
43,008 KB
testcase_04 AC 207 ms
42,644 KB
testcase_05 AC 191 ms
42,544 KB
testcase_06 AC 196 ms
43,132 KB
testcase_07 AC 195 ms
42,996 KB
testcase_08 AC 236 ms
44,624 KB
testcase_09 AC 248 ms
45,560 KB
testcase_10 AC 264 ms
44,476 KB
testcase_11 AC 259 ms
45,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		for (int i = 0; i < t; i++) {
			String[] sa = br.readLine().split(" ");
			long a = Integer.parseInt(sa[0]);
			long b = Integer.parseInt(sa[1]);
			long c = Integer.parseInt(sa[2]);
			long x = Integer.parseInt(sa[3]);
			long y = Integer.parseInt(sa[4]);
			long z = Integer.parseInt(sa[5]);

			long[] val = new long[4];
			Arrays.fill(val, Long.MAX_VALUE);
			if (b >= 3 && a >= 2) {
				val[0] = Math.max(a - (b - 1), 0) * x
						+ Math.max(c - Math.min(a - 1, b - 2), 0) * z;
			}
			if (b >= 3 && c >= 2) {
				val[1] = Math.max(c - (b - 1), 0) * z
						+ Math.max(a - Math.min(c - 1, b - 2), 0) * x;
			}
			if (a >= 3 && c >= 2) {
				val[2] = Math.max(c - (a - 1), 0) * z
						+ Math.max(b - Math.min(c - 1, a - 2), 0) * y;
			}
			if (c >= 3 && a >= 2) {
				val[3] = Math.max(a - (c - 1), 0) * x
						+ Math.max(b - Math.min(a - 1, c - 2), 0) * y;
			}

			long ans = Long.MAX_VALUE;
			for (int j = 0; j < val.length; j++) {
				ans = Math.min(ans, val[j]);
			}
			if (ans == Long.MAX_VALUE) {
				System.out.println(-1);
			} else {
				System.out.println(ans);
			}
		}
		br.close();
	}
}
0