結果
| 問題 | No.268 ラッピング(Easy) |
| コンテスト | |
| ユーザー |
kenji_shioya
|
| 提出日時 | 2016-06-14 21:22:35 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 5,000 ms |
| コード長 | 669 bytes |
| 記録 | |
| コンパイル時間 | 3,951 ms |
| コンパイル使用メモリ | 83,696 KB |
| 実行使用メモリ | 41,600 KB |
| 最終ジャッジ日時 | 2026-04-25 17:05:58 |
| 合計ジャッジ時間 | 4,344 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
import java.util.*;
public class Exercise83{
public static void main (String[] args){
Scanner sc = new Scanner(System.in);
Integer[] box = new Integer[3];
Integer[] ribbon = new Integer[3];
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
for(int i = 0; i < ribbon.length; i++){
ribbon[i] = sc.nextInt();
}
box[0] = a + b;
box[1] = a + c;
box[2] = b + c;
Arrays.sort(box, Comparator.naturalOrder());
Arrays.sort(ribbon, Comparator.reverseOrder());
int sum = 0;
for(int i = 0; i < box.length; i++){
sum += box[i] * 2 * ribbon[i];
}
System.out.println(sum);
}
}
kenji_shioya