Codeforces Round #253 (Div. 2) A. Anton and Letters

OpenSoucre發表於2014-06-20

題目很簡單,只需要注意帶空格的輸入用getline即可

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set>

using namespace std;

int main(){
    string str;
    getline(cin,str);
    set<char> a;
    for(int i= 1 ; i < str.length()-1; i+=3 ){
        a.insert(str[i]);
    }
    cout<<a.size()<<endl;
}

 

相關文章