问题标题: 酷町堂:3854

0
0
已解决
胡景轩
胡景轩
资深守护
资深守护
#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
#include<algorithm>
#include<iomanip> 
using namespace std;
int t[50010];
int main(){
	string s;
	getline(cin,s);
	for(int i=0;i<s.size();i++){
		t[(int)s[i]]++;
	}
	for(int j=s.size()-1;j>=0;j--){
		if((int)s[j]>='0'&&(int)s[j]<='9'){
            for(int i=1;i<=t[(int)s[j]];i++){
                cout<<(int)j<<" ";
            }
        }
	}
	return 0;
}

 

胡景轩在2023-03-19 16:36:45追加了内容

emmm......


0
0
0
我要回答