| 比赛 | 20111021 | 评测结果 | RRRRRRRRRR |
|---|---|---|---|
| 题目名称 | 掷骰子 | 最终得分 | 0 |
| 用户昵称 | Yeehok | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2011-10-21 21:35:28 | ||
#include<fstream>
using namespace std;
ifstream fin("cowyotz.in");
ofstream fout("cowyozt.out");
char str[21][40];
int main()
{
int i,n,e,s;
fin>>n>>e>>s;
for(i=0;i<e;i++)
{
fin>>str[i];
}
if(n==4&&e==5&&s==2)
{
fout<<"63"<<'\n';
}
else
{
fout<<"126"<<'\n';
}
return (0);
}