__MR.WOLF's blog

By __MR.WOLF, history, 3 years ago, In English

Is there any specific math book or notes that I can solve to improve my programming skill.

Full text and comments »

  • Vote: I like it
  • +11
  • Vote: I do not like it

By __MR.WOLF, history, 4 years ago, In English

Why i am getting memory limit exceeded

Problem 318A

include<bits/stdc++.h>

using namespace std;

int main() { long long n,j; cin>>n>>j;

vector<long long>v;

for(int i=1;i<=n;i+=2)
{
     v.push_back(i);
}

for(int j=2;j<=n;j+=2)
{
    v.push_back(j);
}

cout<<v[j-1]<<endl;

}

Full text and comments »

  • Vote: I like it
  • -5
  • Vote: I do not like it