比赛 | 20110728 | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 汉诺塔 | 最终得分 | 0 |
用户昵称 | Citron酱 | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2011-07-28 11:57:34 | ||
#include <fstream> #include <cmath> using namespace std; int main() { int n,m; ifstream fin("ionah.in"); ofstream fout("ionah.out"); fin>>n>>m; if (n>m) fout<<n*m-1<<endl; else fout<<(long long)pow(2.0,(double)m)-1<<endl; fin.close(); fout.close(); }