結果
問題 | No.268 ラッピング(Easy) |
ユーザー | tanzaku |
提出日時 | 2015-08-22 01:22:48 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 415 bytes |
コンパイル時間 | 10,122 ms |
コンパイル使用メモリ | 222,952 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 19:58:41 |
合計ジャッジ時間 | 11,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "fmt" ) func main() { var L1, L2, L3, R, B, Y int fmt.Scan(&L1, &L2, &L3, &R, &B, &Y) var ans int = 1<<29 L := []int{L1,L2,L3} for i := 0; i < 3; i++ { for j := 0; j < 3; j++ { for k := 0; k < 3; k++ { if i != k && j != k && i != j { v := L[i] * (R + Y) + L[j] * (R + B) + L[k] * (B + Y) if v < ans { ans = v } } } } } fmt.Println(2 * ans) }