| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 15423 | 陈颖钧 | 拼数(number) | C++ | Wrong Answer | 24 | 1 MS | 256 KB | 263 | 2026-02-01 14:56:20 |
#include<bits/stdc++.h> using namespace std; string s; int i,j,a[100]; 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; }