結果
| 問題 | No.268 ラッピング(Easy) |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-19 14:17:49 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 5,000 ms |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 85,632 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-04-05 08:04:49 |
| 合計ジャッジ時間 | 1,424 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
a,b,c = map(int,input().split()) T = sorted(map(int,input().split()))[::-1] L = sorted([2*(a+b),2*(b+c),2*(c+a)]) print(sum(ti*li for ti,li in zip(T,L)))
convexineq