| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 308850 | 陈信宇 | 【C1-9】甲流疫情死亡率 | C++ | Accepted | 100 | 1 MS | 248 KB | 169 | 2025-02-10 21:28:13 |
#include<bits/stdc++.h> using namespace std; int main() { double x1,x2,a=0,s=0; cin>>x1>>x2; s=x2/x1; cout<<fixed<<setprecision(3)<<s*100<<"%"; return 0; }