| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147506 | 邓凯方 | 09优惠活动 | C++ | Wrong Answer | 0 MS | 272 KB | 489 | 2026-02-05 18:53:09 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int P,G,S,B,a; cin>>B>>a; if(B==P){ cout<<a/10*7; } else if(B==G){ cout<<a/10*8; } else if(B==S){ cout<<a/10*9; } else{ cout<<a/100*95; } return 0; }
------Input------
C 100
------Answer-----
95.00
------Your output-----
0