Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
57461 陈可堃 J2 C++ 运行超时 70 1124 MS 932 KB 892 2022-10-04 11:26:08

Tests(7/10):


#include <bits/stdc++.h> #define endl '\n' using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t; cin >> t; while(t--){ int n; string s; cin >> n >> s; if(s.size()==n)cout << s << endl; else if(s.size()<n){ int t; while(s.size()<n&&(t=s.find("w"))!=s.npos)s=s.replace(t,1,"uu"); while(s.size()<n&&(t=s.find("m"))!=s.npos)s=s.replace(t,1,"nn"); cout << s << endl; } else if(s.size()>n){ int t; while(s.size()>n&&(t=s.find("uu"))!=s.npos)s=s.replace(t,2,"w"); while(s.size()>n&&(t=s.find("nn"))!=s.npos)s=s.replace(t,2,"m"); if(s.size()==n)cout << s << endl; else{ while(s.size()>n&&(t=s.find("uwu"))!=s.npos)s=s.replace(t,3,"ww"); while(s.size()>n&&(t=s.find("nmn"))!=s.npos)s=s.replace(t,3,"mm"); if(s.size()==n)cout << s << endl; } } } return 0; }


测评信息: