結果
| 問題 | 
                            No.2051 Divide
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-01-15 17:35:46 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 194 bytes | 
| コンパイル時間 | 221 ms | 
| コンパイル使用メモリ | 82,492 KB | 
| 実行使用メモリ | 67,092 KB | 
| 最終ジャッジ日時 | 2024-12-29 07:08:00 | 
| 合計ジャッジ時間 | 2,806 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 2 | 
| other | RE * 23 | 
ソースコード
inputAB = str(input())
spritAB = inputAB.split(" ")
sumAll = 0
for i in spritAB:
    sumAll += int(i)
maxlist = [int(spritAB[0])*3,int(spritAB[1])*3,int(spritAB[2])*3,sumAll]
print(max(maxlist))