結果
問題 | No.964 2020 |
ユーザー | paruf4 |
提出日時 | 2020-08-07 22:47:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,020 ms |
コード長 | 1,173 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 202,516 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 23:06:39 |
合計ジャッジ時間 | 2,957 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(hoge) (hoge).begin(), (hoge).end() #define en '\n' using ll = long long; using ull = unsigned long long; typedef vector<ll> vec; typedef vector<vector<ll>> mat; typedef vector<vector<vector<ll>>> mat3; typedef vector<string> svec; typedef vector<vector<string>> smat; typedef pair<ll, ll> P; constexpr long long INF = 1LL << 60; constexpr int INF_INT = 1 << 25; constexpr long long MOD = (ll)1e9 + 7; // constexpr long long MOD = 998244353LL; using ld = long double; static const ld pi = 3.141592653589793L; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } // for (int i = 0; i <= n; ++i) // vector<long long> v(n), c(n); int main() { int n; cin >> n; string res = ""; if (n == 1) { cout << "1" << endl; exit(0); } for (int i = 0; i < n; ++i) { for (int j = 0; j < n; ++j) { res = to_string(i) + res; } } cout << res << endl; return 0; }