# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1116440 | heey | Sifra (COCI21_sifra) | C++14 | 1 ms | 592 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);
string s; cin >> s;
int n = s.length();
set<int> a;
bool f = false;
int nm = 0;
for(int i = 0; i < n; i++){
if(s[i] - '0' >= 0 && s[i] - '0' < 10){
f = true;
nm *= 10;
nm += s[i] - '0';
}
else if(f) {
a.insert(nm);
f = false;
nm = 0;
}
}
if(f) a.insert(nm);
cout << a.size() << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |