結果

問題 No.268 ラッピング(Easy)
ユーザー roarisroaris
提出日時 2019-12-18 20:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 53,452 KB
最終ジャッジ日時 2024-07-06 23:01:09
合計ジャッジ時間 1,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,156 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 31 ms
53,168 KB
testcase_03 AC 35 ms
52,212 KB
testcase_04 AC 34 ms
52,580 KB
testcase_05 AC 32 ms
52,964 KB
testcase_06 AC 32 ms
51,696 KB
testcase_07 AC 32 ms
51,992 KB
testcase_08 AC 32 ms
53,452 KB
testcase_09 AC 33 ms
53,188 KB
testcase_10 AC 34 ms
52,996 KB
testcase_11 AC 34 ms
52,616 KB
testcase_12 AC 37 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L1, L2, L3 = map(int, input().split())
rby = list(map(int, input().split()))
l = [2*(L1+L2), 2*(L2+L3), 2*(L3+L1)]
l.sort()
rby.sort(reverse=True)
ans = sum([li*rby_i for li, rby_i in zip(l, rby)])

print(ans)
0