Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

CSES PROBLEM(Number Spiral )

Правка en1, от coder__369, 2024-10-11 12:27:28

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"; }

~~~~~

Теги #cses_introductory

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский coder__369 2024-10-11 12:27:57 0 (published)
en1 Английский coder__369 2024-10-11 12:27:28 573 Initial revision (saved to drafts)