結果

問題 No.268 ラッピング(Easy)
ユーザー yansi819yansi819
提出日時 2024-05-22 11:30:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 195 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-05-22 11:30:05
合計ジャッジ時間 1,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,260 KB
testcase_01 AC 32 ms
52,740 KB
testcase_02 AC 36 ms
52,020 KB
testcase_03 AC 33 ms
52,788 KB
testcase_04 AC 31 ms
51,868 KB
testcase_05 AC 32 ms
52,732 KB
testcase_06 AC 32 ms
51,992 KB
testcase_07 AC 34 ms
53,348 KB
testcase_08 AC 32 ms
52,376 KB
testcase_09 AC 32 ms
52,616 KB
testcase_10 AC 33 ms
53,868 KB
testcase_11 AC 31 ms
53,188 KB
testcase_12 AC 33 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L1, L2, L3 = map(int, input().split())
Q = list(map(int, input().split()))
LS = [(L1 + L2) * 2, (L2 + L3) * 2, (L3 + L1) * 2]
LS.sort()
Q.sort()
print(LS[0] * Q[2] + LS[1] * Q[1] + LS[2] * Q[0])
0