Submission #706888

#TimeUsernameProblemLanguageResultExecution timeMemory
706888YugiHackerSifra (COCI21_sifra)C++14
50 / 50
1 ms324 KiB
#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)

Main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   10 | main()
      | ^~~~
Main.cpp: In function 'int main()':
Main.cpp:3:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    3 | #define f0(i,n) for(int i=0;i<n;++i)
......
   14 |     f0 (i, s.size())
      |         ~~~~~~~~~~~           
Main.cpp:14:5: note: in expansion of macro 'f0'
   14 |     f0 (i, s.size())
      |     ^~
#Verdict Execution timeMemoryGrader output
Fetching results...