結果
問題 | No.268 ラッピング(Easy) |
ユーザー | tenten |
提出日時 | 2020-11-18 09:05:45 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 924 bytes |
コンパイル時間 | 2,097 ms |
コンパイル使用メモリ | 77,376 KB |
実行使用メモリ | 54,296 KB |
最終ジャッジ日時 | 2024-07-23 08:51:26 |
合計ジャッジ時間 | 4,591 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
54,152 KB |
testcase_01 | AC | 129 ms
53,984 KB |
testcase_02 | AC | 127 ms
53,692 KB |
testcase_03 | AC | 125 ms
53,944 KB |
testcase_04 | AC | 115 ms
52,968 KB |
testcase_05 | AC | 131 ms
54,228 KB |
testcase_06 | AC | 132 ms
54,092 KB |
testcase_07 | AC | 129 ms
53,960 KB |
testcase_08 | AC | 128 ms
54,008 KB |
testcase_09 | AC | 129 ms
53,848 KB |
testcase_10 | AC | 129 ms
54,296 KB |
testcase_11 | AC | 132 ms
53,980 KB |
testcase_12 | AC | 134 ms
53,984 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] base = new int[3]; for (int i = 0; i < 3; i++) { base[i] = sc.nextInt(); } int[] lengths = new int[3]; for (int i = 0; i < 3; i++) { lengths[i] = base[i] + base[(i + 1) % 3]; lengths[i] *= 2; } int[] rgb = new int[3]; for (int i = 0; i < 3; i++) { rgb[i] = sc.nextInt(); } int[][] perm = new int[][]{{0, 1, 2}, {0, 2, 1}, {1, 0, 2}, {1, 2, 0}, {2, 0, 1}, {2, 1, 0}}; int min = Integer.MAX_VALUE; for (int[] order : perm) { int sum = 0; for (int i = 0; i < 3; i++) { sum += lengths[i] * rgb[order[i]]; } min = Math.min(min, sum); } System.out.println(min); } }