Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7542 - Утга олголт 2

NxN хэмжээтэй квадрат массивыг жишээн дээрх загвараар дүүргэ.

Input

Квадрат массивын хэмжээ натурал тоо N өгөгдөнө. N<10.

Output

Квадрат массивын элементүүдийг мөр мөрөөр нь хэвлэнэ.

Гэхдээ элемент бүрийг 3 хоосон зайд хойш нь шахаж хэвлэнэ. Жишээг сайн ажиглана уу.

Жишээн дээрх 5-ын тоо гэхэд урдаа, хойноо тус бүр 2 хоосон зайтай байна. Мөн 10-ын тоо урдаа 1, хойноо 2 хоосон зайтай байна.

Example

Input:
5

Output: 5 4 3 2 1
10 9 8 7 6
15 14 13 12 11
20 19 18 17 16
25 24 23 22 21

Нэмсэн:Bataa
Огноо:2013-02-07
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2024-03-20 14:38:48
CHOKO IN THE HOUSE

#include <iostream>
using namespace std;
int main() {
int n;
cin>>n;
int temp = n;
for(int i=0; i<n; i++){
if(i%2==0){
for(int j=0; j<n; j++){
if(temp<10){
cout<<" "<<temp<<" ";
temp--;
}
else{
cout<<temp<<" ";
temp--;
}
}
}
else{
cout<<endl;
temp = n*2+temp;
for(int j=0; j<n; j++){
if(temp<10){
cout<<" "<<temp<<" ";
temp--;
}
else {
cout<<temp<<" ";
temp--;
}
}
cout<<endl;
temp = n*2+temp;
}
}
return 0;
}


2023-11-06 11:22:27
#include <iostream>

using namespace std;

int main(){
int n ,i,k;
cin >> n;
for (i = n ; i<=n*n ; i+=n){
for(int t = i ; t>i-n ; t--){
cout << t <<" ";
}
cout << endl;
}
return 0;
} deelii bla

2023-02-15 01:51:07
#include<bits/stdc++.h>
using namespace std;
int main ()
{
int i,j,b=1,a[10][10],n,m;
scanf("%d" ,&n);
for(i=1;i<=n;i++)
{for(j=1;j<=n;j++)
{ a[i][j]=(i*n)-(j-1);
}}


for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
{
printf("%3d " ,a[i][j]); }
printf("\n"); }

return 0;
} ezzz
2022-10-24 06:31:05
#include <iostream>
using namespace std;
int main() {
int x, y=1, squr;
cin >> x;
int z=x;
squr=x*x;
for(int i=x; i<=squr; i=i+x){
for(int j=z; j>=y; j--){
cout << j << " ";
if(j==y){
cout << endl;
z=z+x;
y=y+x;
}
}
}
cout << endl;
}
2022-10-12 05:47:03
#include<stdio.h>
using namespace std;
int a[100][100],i,j,n,m,k;
main()
{
scanf("%d",&n);
k=0;
for(i=1;i<=n;i++)
for(j=n;j>=1;j--)
{
k++;
a[i][j]=k;
}
for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
{
if(a[i][j]<10)printf(" %d",a[i][j]);
else printf(" %d",a[i][j]);
}
printf("\n");
}
return 0;
}
2022-10-10 07:45:05
#include<stdio.h>
int main(){
int i,j,n,t=1;
scanf("%d",&n);
int a[n][n];
for(i=0; i<n; i++){

if(i%2==0){
for(j=0; j<n; j++){
a[i][j]=t;
t++;
}
}
else{
for(j=n-1; j>=0; j--){
a[i][j]=t;
t++;
}
}
}
for(i=0; i<n; i++){

for(j=0; j<n; j++){
printf("%3d",a[i][j]);
}
printf("\n");
}
return 0;
}
2022-10-10 07:43:43
#include<stdio.h>
int main(){
int i,j,n,t=1;
scanf("%d",&n);
int a[n][n];
for(i=0; i<n; i++){

if(i%2==0){
for(j=0; j<n; j++){
a[i][j]=t;
t++;
}
}
else{
for(j=n-1; j>=0; j--){
a[i][j]=t;
t++;
}
}
}
for(i=0; i<n; i++){

for(j=0; j<n; j++){
printf("%3d",a[i][j]);
}
printf("\n");
}
return 0;
}
2021-11-10 12:25:25
String s;
cin >> s;
int n,len,i,zer=1,ss=0;
len=strlen(s);
for(i=len-1;i>=0;i--){
if(s[i] == '1') ss=ss+s;
s=s*2;
s=s%15;
ss=ss%15;
}
2020-08-10 09:55:46
arai engiin arga
#include <iostream>
using namespace std;
int main() {
int x, y=1, squr;
cin >> x;
int z=x;
squr=x*x;
for(int i=x; i<=squr; i=i+x){
for(int j=z; j>=y; j--){
cout << j << " ";
if(j==y){
cout << endl;
z=z+x;
y=y+x;
}
}
}
cout << endl;
}
2019-12-17 04:51:07
huulhaa bolioroi guysssss





































































































































































































































































































































































































































































































































































































































































































































































































































































































































© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.