比赛 清明时节雨纷纷,今天天气很晴朗 评测结果 AAAAAAAAAA
题目名称 外星密码 最终得分 100
用户昵称 sxysxy 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-04-07 20:05:02
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdarg>
#include <list>
#include <cctype>
#include <queue>
using namespace std;
char str[23333];
int len ;
inline int next_int(int p){
  while(isdigit(str[p]))p++;return p;
}
int calc(int p){
  while(str[p] != ']' && p < len){
    if(str[p] == '['){
      p++;
      int x; sscanf(str+p, "%d", &x);
      p = next_int(p);
      for(int i = 1; i < x; i++)calc(p);
      p = calc(p);
    }else putchar(str[p++]);
  }
  return p+1;
}
int main(){
  freopen("passworda.in", "r", stdin);
  freopen("passworda.out", "w", stdout);
  scanf("%s", str);
  len = strlen(str);
  calc(0);
  return 0;
}