結果

問題 No.268 ラッピング(Easy)
ユーザー tnodinotnodino
提出日時 2022-05-06 18:38:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 10,860 KB
実行使用メモリ 8,256 KB
最終ジャッジ日時 2023-09-19 07:47:04
合計ジャッジ時間 2,317 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,224 KB
testcase_01 AC 17 ms
8,020 KB
testcase_02 AC 17 ms
8,168 KB
testcase_03 AC 17 ms
8,220 KB
testcase_04 AC 17 ms
8,152 KB
testcase_05 AC 17 ms
8,216 KB
testcase_06 AC 16 ms
8,096 KB
testcase_07 AC 16 ms
8,020 KB
testcase_08 AC 16 ms
8,020 KB
testcase_09 AC 16 ms
8,024 KB
testcase_10 AC 17 ms
8,020 KB
testcase_11 AC 17 ms
8,020 KB
testcase_12 AC 16 ms
8,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
L = list(map(int,input().split()))
R,B,Y = map(int,input().split())
P = [i for i in range(3)]
P = list(permutations(P, 3))
ans = 1<<64
for p in P:
    x = 0
    y = 0
    z = 0
    for i in range(3):
        if p[i] == 0:
            x += L[i]
            y += L[i]
        if p[i] == 1:
            x += L[i]
            z += L[i]
        if p[i] == 2:
            y += L[i]
            z += L[i]
    ans = min(ans, (R * x * 2) + (B * y * 2) + (Y * z * 2))
print(ans)
0