結果
問題 | No.268 ラッピング(Easy) |
ユーザー | tsunabit |
提出日時 | 2020-03-20 14:34:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 612 bytes |
コンパイル時間 | 3,592 ms |
コンパイル使用メモリ | 75,460 KB |
実行使用メモリ | 41,576 KB |
最終ジャッジ日時 | 2024-05-08 03:58:51 |
合計ジャッジ時間 | 5,456 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,144 KB |
testcase_01 | AC | 123 ms
41,168 KB |
testcase_02 | AC | 114 ms
41,540 KB |
testcase_03 | AC | 120 ms
41,276 KB |
testcase_04 | AC | 109 ms
41,088 KB |
testcase_05 | AC | 109 ms
41,268 KB |
testcase_06 | AC | 102 ms
41,576 KB |
testcase_07 | AC | 102 ms
41,508 KB |
testcase_08 | WA | - |
testcase_09 | AC | 125 ms
41,180 KB |
testcase_10 | WA | - |
testcase_11 | AC | 109 ms
41,404 KB |
testcase_12 | WA | - |
ソースコード
import java.util.*; import java.io.*; import java.math.*; public class No268 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] l = {sc.nextInt(), sc.nextInt(), sc.nextInt()}; // int l1 = sc.nextInt(), l2 = sc.nextInt(), l3 = sc.nextInt(); int r = sc.nextInt(), b = sc.nextInt(), y = sc.nextInt(); int ans = Integer.MAX_VALUE; for(int i = 0; i < 3; i++) { int t = 0; t +=(l[0]+l[2])*2*r + (l[1]+l[2])*2*b + (l[1]+l[0])*2*y; ans = Math.min(ans, t); int k; k = l[0]; l[0] = l[1]; l[1] = l[2]; l[2] = k; } System.out.println(ans); } }