結果

問題 No.1971 Easy Sudoku
ユーザー 沙耶花沙耶花
提出日時 2022-06-10 21:21:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 4,117 ms
コンパイル使用メモリ 252,228 KB
最終ジャッジ日時 2025-01-29 19:27:34
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int n;
	cin>>n;
	vector a(n,vector<int> (n));
	rep(i,n){
		rep(j,n){
			a[i][j] = (i+j)%n;
		}
	}
	rep(i,n){
		rep(j,n){
			if(j!=0)cout<<' ';
			cout<<a[i][j]+1;
		}
		cout<<endl;
	}
	
    return 0;
}
0