結果

問題 No.268 ラッピング(Easy)
ユーザー Mcpu3Mcpu3
提出日時 2018-09-05 14:06:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-11-08 20:34:26
合計ジャッジ時間 4,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,212 KB
testcase_01 AC 134 ms
41,560 KB
testcase_02 AC 137 ms
41,060 KB
testcase_03 AC 137 ms
41,280 KB
testcase_04 AC 130 ms
41,168 KB
testcase_05 AC 122 ms
39,948 KB
testcase_06 AC 121 ms
40,264 KB
testcase_07 AC 132 ms
41,228 KB
testcase_08 AC 138 ms
41,292 KB
testcase_09 AC 136 ms
41,276 KB
testcase_10 AC 133 ms
41,320 KB
testcase_11 AC 132 ms
41,444 KB
testcase_12 AC 131 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int l[]=new int[3],n[]=new int[3],s;
		for(int i=0;i<3;++i) l[i]=sc.nextInt();
		Arrays.sort(l);
		for(int i=0;i<3;++i) n[i]=sc.nextInt();
		Arrays.sort(n);
		sc.close();
		s=(l[0]+l[1])*2*n[2];
		s+=(l[0]+l[2])*2*n[1];
		s+=(l[1]+l[2])*2*n[0];
		System.out.print(s);
	}
}
0