ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#185598 | #1143. 打折!打折! | luojianwei221625 | 100 | 0ms | 1332kb | C++ | 165b | 2023-09-30 09:13:40 | 2023-09-30 09:13:41 |
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
double a, b;
cin >> a >> b;
a /= 10;
cout << fixed << setprecision(2) << b / a;
return 0;
}
Details
小提示:点击横条可展开更详细的信息
Test #1:
score: 50
Accepted
time: 0ms
memory: 1332kb
input:
9.5 275
output:
289.47
result:
ok single line: '289.47'
Test #2:
score: 50
Accepted
time: 0ms
memory: 1328kb
input:
6.5 902
output:
1387.69
result:
ok single line: '1387.69'