# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
375113 | dimashii | Sifra (COCI21_sifra) | C++17 | 1 ms | 364 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>
#define ll long long
using namespace std;
const int mxN = 1e6 + 5, mod = 1e9 + 7;
int main() {
ios :: sync_with_stdio(false), cin.tie(nullptr);
string s;
cin >> s;
int ans = 0;
set <string> vec;
string now;
for (int i = 0; i < s.size(); ++i) {
if (!(s[i] >= '0' && s[i] <= '9')) {
if (!now.empty())
vec.insert(now), now = "";
}
else
now += s[i];
}
if (!now.empty())
vec.insert(now);
for (auto x : vec) {
if (x[0] != '0')
++ans;
}
cout << ans;
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |