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

CSES PROBLEM(Number Spiral )
Difference between en1 and en2, changed 0 character(s)
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";↵
    }↵
~~~~~↵

~~~~~↵


  

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English coder__369 2024-10-11 12:27:57 0 (published)
en1 English coder__369 2024-10-11 12:27:28 573 Initial revision (saved to drafts)