Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
46656 | zhangchunhong | 字母组合 | C++ | Wrong Answer | 0 MS | 244 KB | 158 | 2024-05-05 00:24:28 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; string s; cin>>s; sort(s.begin(),s.end()); cout << s; return 0; }