| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 15425 | 陈颖钧 | 拼数(number) | C++ | Wrong Answer | 44 | 2 MS | 260 KB | 264 | 2026-02-01 15:01:37 |
#include<bits/stdc++.h> using namespace std; string s; int i,j,a[1000]; 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; }