Please read the new rule regarding the restriction on the use of AI tools. ×

coder__369's blog

By coder__369, history, 10 hours ago, In English

Tell me whats wrong in this approach to this problem i wrote for this problem I am just a beginner.


~~~~~ #include<iostream> using namespace std; int main(){ long long int t; cin>>t; while (t--) { long long int x , y; cin>>x>>y; if(x == y) cout<<x*(x-1) + 1<<"\n" ; if(x>y) { long long int diag = x*(x -1) +1; cout<<diag + (x - y)<<"\n"; } if(x<y) cout<< y*(y-1) + 1 + (y-x)<<"\n"; }

~~~~~

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it