13行代码AC
2024-09-20 20:57:39
发布于:北京
2阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
long long x,y,z,ans = 0;
cin >> x >> y >> z;
if(x == 0){
cout << 1;
return 0;
}
ans = 2 * y + x + 1;
if(ans >= 5) ans += 5 * z;
cout << ans;
}
这里空空如也
有帮助,赞一个