| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 464457 | TheScrasse | Sifra (COCI21_sifra) | C++14 | 1 ms | 312 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;
#define nl "\n"
#define nf endl
#define ll long long
#define pb push_back
#define _ << ' ' <<
#define INF (ll)1e18
#define mod 998244353
#define maxn 110
ll i, i1, j, k, k1, t, n, m, res, flag[10], a, b;
string s;
set<ll> st;
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    /* #if !ONLINE_JUDGE && !EVAL
        ifstream cin("input.txt");
        ofstream cout("output.txt");
    #endif */
    cin >> s; n = s.size() + 1; s = '#' + s + '#';
    for (i = 1; i <= n; i++) {
        k = (ll)s[i] - '0';
        if (k >= 0 && k <= 9) {
            m = 10 * m + k;
        } else if (m != 0) {
            st.insert(m); m = 0;
        }
    }
    cout << st.size() << nl;
    return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
