| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 464457 | TheScrasse | Sifra (COCI21_sifra) | C++14 | 1 ms | 312 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... | ||||
