結果

問題 No.2175 Exciting Combo
ユーザー kfield1950kfield1950
提出日時 2023-01-11 23:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,532 KB
最終ジャッジ日時 2024-06-02 01:22:04
合計ジャッジ時間 1,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,908 KB
testcase_01 AC 33 ms
53,532 KB
testcase_02 AC 33 ms
51,996 KB
testcase_03 AC 33 ms
52,212 KB
testcase_04 AC 32 ms
52,348 KB
testcase_05 AC 32 ms
51,892 KB
testcase_06 AC 32 ms
51,824 KB
testcase_07 AC 32 ms
53,084 KB
testcase_08 AC 32 ms
53,280 KB
testcase_09 AC 33 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a1,a2,a3,b=map(int,input().split())
print(max(a3*3,a1+a2+a3+b))
0