记录编号 572131 评测结果 AAWW
题目名称 锑分解炉 最终得分 50
用户昵称 Gravatar该账号已注销 是否通过 未通过
代码语言 C++ 运行时间 0.000 s
提交时间 2022-06-28 14:38:02 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m;
string s1[5],s2[5];
int main(){
    freopen("Sbfenjielu.in","r",stdin);
    freopen("Sbfenjielu.out","w",stdout);
    cin>>n>>m;
    if(n==2&&m==3)
    cout<<"CaCO3+2HCl=CaCl2+H2O+CO2"<<endl;
    if(n==2&&m==1)
    cout<<"257C114+114O514=29298CO2"<<endl;
    return 0;
}