记录编号 455905 评测结果 AAAAAAAAAA
题目名称 字符串子串 最终得分 100
用户昵称 Gravatarサイタマ 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2017-10-03 14:16:45 内存使用 0.32 MiB
显示代码纯文本
#include<fstream>
#include<algorithm>
#include<string>
using namespace std;
ifstream cin("substring.in");
ofstream cout("substring.out");
string str[1001];
int n;
bool cmp(string a,string b)
{
	return a+b<b+a;
}
int lyh()
{
	cin>>n;
	for(int i=1;i<=n;i++)
		cin>>str[i];
	sort(str+1,str+n+1,cmp);
	for(int i=1;i<=n;i++)
		cout<<str[i];
	cin.close();
	cout.close();
	return 0;
}
int h=lyh();
int main(){;}