| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134761 | 罗晟睿 | 09优惠活动 | C++ | Accepted | 1 MS | 268 KB | 349 | 2025-11-01 14:10:00 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; double b; cin>>a>>b; if(a=='P'){ printf("%.2lf", b*0.7) ; } else if(a=='G'){ printf("%.2lf", b*0.8); } else if(a=='S'){ printf("%.2lf", b*0.9); } else { printf("%.2lf", b*0.95); } return 0; }