結果

問題 No.1971 Easy Sudoku
ユーザー magsta
提出日時 2021-08-20 21:06:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 196 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 166,208 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-21 07:13:41
合計ジャッジ時間 4,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 << " " << (i + j) % N;
		}
		cout << endl;
	}
}
0