比赛 | EYOI暨SBOI暑假快乐赛4th | 评测结果 | WWWW |
---|---|---|---|
题目名称 | 锑分解炉 | 最终得分 | 0 |
用户昵称 | 00000 | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2022-06-28 11:59:07 | ||
#include<bits/stdc++.h> #define ll long long using namespace std; string x; int a,b; int main(){ freopen("Sbfenjielu.in","r",stdin); freopen("Sbfenjielu.out","w",stdout); cin>>a>>b; cin>>x; if(x=="CaCO3") cout<<"CaCO3=CaO+CO2"; if(x=="NaOH") cout<<"2NaOH+SO2=Na2SO3+H2O"; if(x=="Sb") cout<<"3Sb+3O2=Sb3O6"; if(x=="C2H5OH") cout<<"C2H5OH+3O2=3H2O+2CO2"; return 0; }