| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 68102 | 尹翊泽 | 放大的X | C++ | Presentation Error | 0 | 9 MS | 244 KB | 274 | 2023-02-02 14:40:00 |
#include<bits/stdc++.h> using namespace std; int t,n; int main(){ cin>>n; for(int a=1;a<=n;a++){ cin>>t; for(int i=1;i<=t;i++){ for(int j=1;j<=t;j++){ if((j==i)||(i+j==t+1)) cout<<"X"; else cout<<" "; } cout<<endl; } } return 0; }