제출 #540547

#제출 시각아이디문제언어결과실행 시간메모리
540547glomeSifra (COCI21_sifra)C++17
50 / 50
1 ms324 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
    string s;
    cin >> s;
    set<string> se;
    for (int i = 0; i<s.size(); i++) {
        string c;
        while(!isalpha(s[i])) {
            c.push_back(s[i]);
            i++;
        }

        if(c.size()) se.insert(c);
    }
    cout << se.size() << '\n';
	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'int main()':
Main.cpp:11:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   11 |     for (int i = 0; i<s.size(); i++) {
      |                     ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...