結果

問題 No.2175 Exciting Combo
ユーザー hiryuNhiryuN
提出日時 2023-02-05 15:02:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 53,544 KB
最終ジャッジ日時 2024-07-04 04:08:35
合計ジャッジ時間 1,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,964 KB
testcase_01 AC 38 ms
52,232 KB
testcase_02 AC 38 ms
51,960 KB
testcase_03 AC 38 ms
52,576 KB
testcase_04 AC 38 ms
52,648 KB
testcase_05 AC 37 ms
52,860 KB
testcase_06 AC 38 ms
52,280 KB
testcase_07 AC 37 ms
52,628 KB
testcase_08 AC 38 ms
53,544 KB
testcase_09 AC 39 ms
52,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,k=map(int,input().split())
print(max(a*3,b*3,c*3,a+b+c+k))
0