結果

問題 No.268 ラッピング(Easy)
ユーザー tsunabittsunabit
提出日時 2020-03-20 14:57:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 3,179 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-05-08 04:46:40
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,996 KB
testcase_01 AC 108 ms
53,104 KB
testcase_02 AC 121 ms
54,136 KB
testcase_03 AC 117 ms
54,152 KB
testcase_04 AC 117 ms
54,040 KB
testcase_05 AC 117 ms
53,916 KB
testcase_06 AC 117 ms
54,304 KB
testcase_07 AC 118 ms
54,136 KB
testcase_08 AC 111 ms
53,380 KB
testcase_09 AC 122 ms
54,028 KB
testcase_10 AC 119 ms
54,152 KB
testcase_11 AC 116 ms
54,048 KB
testcase_12 AC 122 ms
53,916 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