結果

問題 No.268 ラッピング(Easy)
ユーザー tsunabittsunabit
提出日時 2020-03-20 14:57:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-12-14 05:48:25
合計ジャッジ時間 6,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,004 KB
testcase_01 AC 135 ms
53,964 KB
testcase_02 AC 136 ms
54,004 KB
testcase_03 AC 137 ms
54,176 KB
testcase_04 AC 133 ms
54,336 KB
testcase_05 AC 134 ms
54,196 KB
testcase_06 AC 133 ms
53,928 KB
testcase_07 AC 136 ms
54,052 KB
testcase_08 AC 132 ms
53,996 KB
testcase_09 AC 138 ms
53,736 KB
testcase_10 AC 133 ms
54,020 KB
testcase_11 AC 136 ms
54,336 KB
testcase_12 AC 135 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No268 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l1 = sc.nextInt(), l2 = sc.nextInt(), l3 = sc.nextInt();
		int[] l = {(l1+l3)*2, (l2+l3)*2, (l2+l1)*2};
		Arrays.sort(l);
		int[] c = {sc.nextInt(), sc.nextInt(), sc.nextInt()};
		Arrays.sort(c);
		System.out.println(l[0]*c[2] + l[1]*c[1] + l[2]*c[0]);
	}
}
0