Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
58108 | 还有库库 | 黑心商家 | C++ | Accepted | 0 MS | 244 KB | 212 | 2024-12-04 16:49:37 |
#include<bits/stdc++.h> using namespace std; int main() { int weight; cin>>weight; int money=weight/100*12; int youfei=8; youfei+=ceil((weight-1000)*1.0/500)*4; cout<<money+youfei; return 0; }