結果

問題 No.1587 012 Matrix
ユーザー V_Melville
提出日時 2021-07-08 23:31:24
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 190,840 KB
最終ジャッジ日時 2025-01-22 19:31:36
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using std::cin;
using std::cout;

int main() {
	int n;
	cin >> n;
	
	int x = 0;
	for (int i = 0; i < n; ++i) {
		for (int j = 0; j < n; ++j) {
			cout << (x++);
		}
		puts("");
	}
	
	return 0;
}
0