結果

問題 No.268 ラッピング(Easy)
ユーザー c_r_5c_r_5
提出日時 2018-10-26 15:52:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 662 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 78,940 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-04-29 21:52:00
合計ジャッジ時間 5,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,568 KB
testcase_01 AC 110 ms
39,876 KB
testcase_02 AC 123 ms
41,240 KB
testcase_03 AC 122 ms
41,136 KB
testcase_04 AC 109 ms
40,108 KB
testcase_05 AC 111 ms
39,880 KB
testcase_06 AC 109 ms
40,016 KB
testcase_07 AC 109 ms
39,976 KB
testcase_08 AC 123 ms
41,076 KB
testcase_09 AC 114 ms
40,036 KB
testcase_10 AC 123 ms
41,096 KB
testcase_11 AC 123 ms
41,188 KB
testcase_12 AC 123 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] l = new int[3];
		for (int i = 0; i < 3; i++)
			l[i] = Integer.parseInt(sc.next());
		Integer[] r = new Integer[3];
		for (int i = 0; i < 3; i++)
			r[i] = Integer.parseInt(sc.next());
		Arrays.sort(l);
		Arrays.sort(r, Comparator.reverseOrder());
		int ans = r[0] * (l[0] + l[1]) * 2;
		if (l[1] + l[2] > l[2] + l[0]) {
			int t = r[1];
			r[1] = r[2];
			r[2] = t;
		}
		ans += r[1] * (l[1] + l[2]) * 2;
		ans += r[2] * (l[2] + l[0]) * 2;
		System.out.println(ans);
	}
}
0