結果
問題 |
No.1971 Easy Sudoku
|
ユーザー |
![]() |
提出日時 | 2021-08-20 17:58:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 1,385 ms |
コンパイル使用メモリ | 165,452 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 07:13:10 |
合計ジャッジ時間 | 3,696 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; for (int i = 0; i < N; i++) { cout << i % N + 1 << endl; for (int j = 1; j < N; j++) { cout << " " << (i + j) % N + 1; } cout << endl; } }