結果
| 問題 | No.268 ラッピング(Easy) |
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2016-04-15 04:45:46 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 83 ms / 5,000 ms |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 152 ms |
| コンパイル使用メモリ | 77,292 KB |
| 最終ジャッジ日時 | 2025-12-03 20:23:22 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
import itertools l=map(int,raw_input().split()) x=[(l[0]+l[1])*2,(l[0]+l[2])*2,(l[1]+l[2])*2] r=map(int,raw_input().split()) l=[] for i in itertools.permutations([0,1,2]): for j in itertools.permutations([0,1,2]): l+=[sum(x[i[k]]*r[j[k]]for k in[0,1,2])] print min(l)
taba