| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46720 | 老方 | 字母组合 | C++ | Accepted | 1 MS | 244 KB | 176 | 2024-05-05 10:04:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; char s[1001]; cin>>n; for(int i=0;i<n;i++){ cin>>s[i]; } sort(s,s+n); cout<<s; return 0; }