結果

問題 No.2175 Exciting Combo
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-06 21:46:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 1,037 ms
コンパイル使用メモリ 86,824 KB
実行使用メモリ 71,372 KB
最終ジャッジ日時 2023-08-20 14:52:11
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
71,208 KB
testcase_01 AC 59 ms
71,208 KB
testcase_02 AC 60 ms
71,044 KB
testcase_03 AC 61 ms
71,040 KB
testcase_04 AC 60 ms
71,020 KB
testcase_05 AC 62 ms
71,124 KB
testcase_06 AC 61 ms
70,988 KB
testcase_07 AC 61 ms
71,248 KB
testcase_08 AC 61 ms
71,044 KB
testcase_09 AC 59 ms
71,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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