codeforces A – I Wanna Be the Guy wrong answer in testcase 27
I am practicing problem solving by solving on Codeforces, but in problem "A-I Wanna Be the Guy". Here is the link for the problem. My code gets rejected at testcase 27 which has input: 3 1 2 2 2 3 Here is my code: #include <bits/stdc++.h> using namespace std; int main() { int n, x;… Read More codeforces A – I Wanna Be the Guy wrong answer in testcase 27