| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 15427 | 陈颖钧 | 拼数(number) | C++ | Runtime Error | 56 | 3 MS | 512 KB | 264 | 2026-02-01 15:03:32 |
#include<bits/stdc++.h> using namespace std; string s; int i,j,a[9990]; int main(){ cin>>s; for(i=0;i<s.size();i++){ if(s[i]>='0'&&s[i]<='9'){ j++; a[j]=s[i]-48; } } sort(a+1,a+j+1); for(i=j;i>=1;i--){ cout<<a[i]; } return 0; }