結果
問題 | No.268 ラッピング(Easy) |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-18 21:38:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 116 ms / 5,000 ms |
コード長 | 560 bytes |
コンパイル時間 | 1,806 ms |
コンパイル使用メモリ | 79,280 KB |
実行使用メモリ | 41,448 KB |
最終ジャッジ日時 | 2024-11-26 06:12:17 |
合計ジャッジ時間 | 4,062 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
40,264 KB |
testcase_01 | AC | 113 ms
41,084 KB |
testcase_02 | AC | 115 ms
41,096 KB |
testcase_03 | AC | 116 ms
41,248 KB |
testcase_04 | AC | 113 ms
41,184 KB |
testcase_05 | AC | 111 ms
40,660 KB |
testcase_06 | AC | 115 ms
41,448 KB |
testcase_07 | AC | 113 ms
41,172 KB |
testcase_08 | AC | 114 ms
41,040 KB |
testcase_09 | AC | 112 ms
40,620 KB |
testcase_10 | AC | 116 ms
41,400 KB |
testcase_11 | AC | 107 ms
40,256 KB |
testcase_12 | AC | 115 ms
41,356 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int L1 = sc.nextInt(); int L2 = sc.nextInt(); int L3 = sc.nextInt(); int [] L = {L1+L2,L2+L3,L3+L1}; int [] RBY = new int [3]; for(int i=0; i<3; i++){ RBY[i] = sc.nextInt(); } Arrays.sort(L); Arrays.sort(RBY); int min=0; for(int i=0; i<3; i++){ min+=RBY[i]*L[2-i]; } System.out.println(2*min); } }