| 比赛 | 20141105 | 评测结果 | EEEEEEEEEEEEEEEEEEEE |
|---|---|---|---|
| 题目名称 | 神奇的压缩机 | 最终得分 | 0 |
| 用户昵称 | Cirno | 运行时间 | 1.612 s |
| 代码语言 | C++ | 内存使用 | 0.31 MiB |
| 提交时间 | 2014-11-05 10:42:06 | ||
#include<iostream>
#include<cstdio>
using namespace std;
string s;
int A,B;
int main()
{
freopen("WinCHG.in","r",stdin);
freopen("WinCHG.out","w",stdout);
scanf("%s",&s);
scanf("%d%d",&A,&B);
printf("%lld\n",s.size()*A);
return 0;
}