Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
62021 | fengxiaohang | 同行列对角线的格 | C++ | Accepted | 0 MS | 244 KB | 200 | 2025-03-08 18:59:56 |
#include<bits/stdc++.h> using namespace std; int main() { cout<<"(2,1) (2,2) (2,3) (2,4)"<<endl<<"(1,3) (2,3) (3,3) (4,3)"<<endl<<"(1,2) (2,3) (3,4)"<<endl<<"(4,1) (3,2) (2,3) (1,4)"<<endl; }