結果

問題 No.964 2020
ユーザー daruma_jp
提出日時 2020-04-09 18:15:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 985 ms
コンパイル使用メモリ 68,048 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 15:25:26
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;




int main() {
	int n;
	cin >> n;
	for (int i = n-1; i >= 0; i--) {
		for (int j = 0; j < n; j++) {
			cout << i;
		}
	}
	cout << endl;

	return 0;
}
0