結果

問題 No.268 ラッピング(Easy)
ユーザー yumechiyumechi
提出日時 2015-09-23 06:18:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-07-19 08:46:30
合計ジャッジ時間 1,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,560 KB
testcase_01 AC 39 ms
52,764 KB
testcase_02 AC 39 ms
52,188 KB
testcase_03 AC 39 ms
53,556 KB
testcase_04 AC 35 ms
52,664 KB
testcase_05 AC 38 ms
53,352 KB
testcase_06 AC 36 ms
52,372 KB
testcase_07 AC 37 ms
52,444 KB
testcase_08 AC 34 ms
52,876 KB
testcase_09 AC 35 ms
51,936 KB
testcase_10 AC 37 ms
52,300 KB
testcase_11 AC 36 ms
52,692 KB
testcase_12 AC 39 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l1, l2, l3 = map(int, input().split())
llist = [[l1, l2], [l2, l3], [l3, l1]]
r, b, y = map(int, input().split())
res = 10 ** 9 + 7
for i in range(3):
    rt = sum(llist[i]) * 2 * r
    for j in range(2):
        bt = sum(llist[(i+1+j) % 3]) * 2 * b
        yt = sum(llist[(i+2-j) % 3]) * 2 * y
        tres = rt + bt + yt
        res = min(tres, res)
print(res)
0