結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int N; cin >> N;
	cout << "1 1 3 4" << endl;
	cout << "2 3 4 1" << endl;
	cout << "3 4 1 2" << endl;
	cout << "4 1 2 3" << endl;
}
0