竞赛
考级
#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; }
为什么要学c++
法兰西玫瑰
#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; }
Alex
#include <bits/stdc++.h> using namespace std; int main(){ long long x,y,z,qpz = 0; cin >> x >> y >> z; if(x == 0){ cout<<1; return 0; } qpz = 2 * y + x + 1; if(qpz >= 5) qpz += 5 * z; cout<<qpz; }
AC神
注意 ans=2*y+x; 还要+1不然他还会买
潜龙暗虎
编程的ikun
#include<iostream> using namespace std; int main(){ long long x,y,z,d=0; cin>>x>>y>>z; if(x==0){ cout<<1; return 0; } d=2y+x+1; if(d>=5) d+=5z; cout<<d; return 0; }
花道旸
༺ཌༀTN黑客ༀད༻
正在减肥的吃货