Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133270 陈骏睿 螺旋矩阵 C++ Wrong Answer 1 MS 272 KB 697 2025-10-18 11:55:46

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,a[21][21],t=1; cin>>n; int i=0; while(t<=n*n){ for(int j=i;j<n-i&&t<n*n;j++)a[i][j]=t++; for(int k=i+1;k<n-1&&t<n*n;k++)a[k][n-i-1]=t++; for(int l=n-2-i;l>=i&&t<=n*n;l--)a[n-1-i][l]=t++; for(int h=n-2-i;h>=i&&t<=n*n;h--)a[h][i]=t++; i++; } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ printf("%4d",a[i][j]); } cout<<endl; } return 0; }


Run Info:

------Input------
5
------Answer-----
1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
------Your output-----
16 2 3 4 5 15 25 18 19 6 14 24 0 20 7 13 23 22 21 8 12 11 10 9 0