結果

問題 No.268 ラッピング(Easy)
ユーザー spaciaspacia
提出日時 2016-01-17 16:56:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 37,268 KB
最終ジャッジ日時 2024-09-19 20:20:23
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,952 KB
testcase_01 AC 52 ms
37,268 KB
testcase_02 AC 52 ms
36,992 KB
testcase_03 AC 52 ms
37,064 KB
testcase_04 AC 52 ms
36,828 KB
testcase_05 AC 52 ms
37,268 KB
testcase_06 AC 54 ms
36,688 KB
testcase_07 AC 52 ms
36,992 KB
testcase_08 AC 53 ms
37,112 KB
testcase_09 AC 52 ms
37,068 KB
testcase_10 AC 53 ms
36,952 KB
testcase_11 AC 54 ms
37,148 KB
testcase_12 AC 53 ms
37,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int size = 3;
		String[] line1 = br.readLine().split(" ");
		int[] a = new int[size];
		for (int i = 0; i < size; i++) a[i] = Integer.parseInt(line1[i]);
		
		String[] line2 = br.readLine().split(" ");
		int[] b = new int[size];
		for (int i = 0; i < size; i++) b[i] = Integer.parseInt(line2[i]);
		int[] c = new int[]{b[0] + b[1] , b[1] + b[2] , b[2] + b[0]};
		
		Arrays.sort(a);
		Arrays.sort(c);
		
		out(2 * (a[0] * c[2] + a[1] * c[1] + a[2] * c[0]));
	}
}
0