记录编号 |
321062 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2010冲刺十]数字积木 |
最终得分 |
100 |
用户昵称 |
Janis |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.017 s |
提交时间 |
2016-10-13 10:21:06 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int n;
string s[1010];
bool cmp(string a,string b){
string temp=a+b,ttemp=b+a;
return temp>ttemp;
}
int main()
{
ios::sync_with_stdio(false);
#ifndef DEBUG
string FileName="brick";
freopen((FileName+".in").c_str(),"r",stdin);
freopen((FileName+".out").c_str(),"w",stdout);
#endif
cin>>n;
for(int i=0;i<n;i++)cin>>s[i];
sort(s,s+n,cmp);
for(int i=0;i<n;i++)cout<<s[i];
}