# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
706888 | YugiHacker | Sifra (COCI21_sifra) | C++14 | 1 ms | 324 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 el cout<<"\n"
#define f0(i,n) for(int i=0;i<n;++i)
#define f1(i,n) for(int i=1;i<=n;++i)
#define maxn
using namespace std;
string s;
map<int, int> m;
int ans;
main()
{
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> s;
f0 (i, s.size())
{
if (!isdigit(s[i])) continue;
int n = 0;
while (isdigit(s[i])) n = n * 10 + s[i] - '0', i++;
i--;
if (m[n] == 0) ans++;
m[n] = 1;
}
cout << ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |