| 比赛 | 20141105 | 评测结果 | WWAAAWWWWWWWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 神奇的压缩机 | 最终得分 | 15 |
| 用户昵称 | Dijkstra | 运行时间 | 0.015 s |
| 代码语言 | C++ | 内存使用 | 0.31 MiB |
| 提交时间 | 2014-11-05 10:30:41 | ||
#include<fstream>
#include<string>
using namespace std;
ifstream fin("WinCHG.in");
ofstream fout("WinCHG.out");
int main()
{
string st;
int A,B;
fin>>st>>A>>B;
fout<<A*st.length()<<endl;
return 0;
}