Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
322561 詹建泽榆 【GESP二级】画正方形2 C++ 通过 100 3 MS 260 KB 197 2025-05-17 09:22:53

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ cout<<char((i+j*n)%26+'A'); } cout<<endl; } return 0; }


测评信息: