记录编号 |
42255 |
评测结果 |
AAAAAAAAAA |
题目名称 |
字符串子串 |
最终得分 |
100 |
用户昵称 |
Makazeu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2012-09-18 09:56:06 |
内存使用 |
3.13 MiB |
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
string str[10];
int N;
bool cmp(const string& a,const string& b) {return a+b<b+a;}
int main()
{
freopen("substring.in","r",stdin);
freopen("substring.out","w",stdout);
scanf("%d\n",&N);
for(int i=1;i<=N;i++) cin>>str[i];
sort(str+1,str+1+N,cmp);
for(int i=1;i<=N;i++) cout<<str[i];
return 0;
}