Files
python/TangDou/LuoGuBook/P3954.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

11 lines
240 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
// printf("%d", int(a * 0.2 + b * 0.3 + c * 0.5 + 0.5));
printf("%d", ceil(a * 0.2 + b * 0.3 + c * 0.5));
return 0;
}