結果
| 問題 | No.964 2020 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-11-30 16:46:32 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,020 ms |
| + 343µs | |
| コード長 | 357 bytes |
| 記録 | |
| コンパイル時間 | 2,745 ms |
| コンパイル使用メモリ | 245,056 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-04 22:56:01 |
| 合計ジャッジ時間 | 3,809 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>
int main() {
int n;
cin >> n;
string ans;
rep(i,n) {
rep(j,n) {
ans.push_back('9'-i);
}
}
cout << ans << endl;
}