1 solutions
-
0
#include<bits/stdc++.h> #define ull unsigned long long using namespace std; bool f(ull x) { if (x % 62 == 0) return true; while (x) { if (x % 100 == 62) return true; x /= 10; } return false; } signed main() { ull n; cin >> n; if (f(n)) cout << "Yes"; else cout << "No"; return 0; }
- 1
Information
- ID
- 4715
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- # Submissions
- 49
- Accepted
- 21
- Uploaded By