比赛 | NOIP2015普及组练习 | 评测结果 | WWWAWAAWWW |
---|---|---|---|
题目名称 | 字符串子串 | 最终得分 | 30 |
用户昵称 | 烟雨 | 运行时间 | 0.005 s |
代码语言 | C++ | 内存使用 | 0.31 MiB |
提交时间 | 2015-11-05 20:14:13 | ||
#include<fstream> #include<string> #include<algorithm> using namespace std; int main() { ifstream fin("substring.in"); ofstream fout("substring.out"); int e; string q[10],t=""; fin>>e; for(int i=1;i<=e;i++)fin>>q[i]; sort(q,q+e); t=""; for(int i=1;i<=e;i++)t=t+q[i]; fout<<t; fin.close(); fout.close(); return 0; }