简介

简单

code

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <math.h>
#include <sstream>

#include <map>
using namespace std;
 
int main() {
    int n;
    cin >> n;
    stringstream ss;
    ss << n;
    string o;
    ss >> o;
    string r;
    map<char, bool> m;
    for(int i=o.size() - 1; i>=0; i--){
        if(!m[o[i]]){
            r.push_back(o[i]);
            m[o[i]] = true;
        }
    }
    cout << r << endl;
    return 0;
}
posted on 2021-06-22 18:49  HDU李少帅  阅读(42)  评论(0编辑  收藏  举报