| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8654 | 汤依宁 | 薪水计算 | C++ | Wrong Answer | 30 | 1 MS | 264 KB | 210 | 2025-04-02 21:28:34 |
#include <bits/stdc++.h> using namespace std; int main() { double a,b,sum=0; cin>>a>>b; if(a<50) { cout<<setprecision(2)<<fixed<<a*b; } if(a>50) { cout<<setprecision(2)<<fixed<<a*b*1.5; } }