题解
2023-07-14 14:26:33
发布于:上海
58阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
LL x, y, z, ans;
int main() {
cin >> x >> y >> z;
if(!x) {
cout << 1 << endl;
return 0;
}
ans = 2 * y + x + 1LL;
if(ans >= 5) ans += 5 * z;
cout << ans << endl;
return 0;
}
这里空空如也
有帮助,赞一个