結果
問題 | No.964 2020 |
ユーザー | seryu |
提出日時 | 2020-01-13 20:26:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,020 ms |
コード長 | 1,410 bytes |
コンパイル時間 | 1,825 ms |
コンパイル使用メモリ | 160,308 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 10:31:33 |
合計ジャッジ時間 | 2,316 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 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 | 1 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < n; i++) #define mrep(i,j,n) for(int i = j; i < n; i++) #define reps(i,n) for(int i = 1; i <= n; i++) #define rrep(i,n) for(int i = n-1; i >= 0; i--) #define rreps(i,n) for(int i = n; i >= 1; i--) #define co(x) cout << x <<endl #define cs(x) cout << x <<" " #define el cout<<endl #define cer(x) cerr << x <<endl #define all(x) (x).begin(),(x).end() #define sz(x) ((int)(x).size()) #define ERASE(x,val) x.erase(remove(ALL(x), val), x.end()) #define vi vector<int> #define vvi vector<vector<int>> #define vpii vector<pair<int,int>> #define vl vector<ll> #define vvl vector<vector<ll>> #define vb vector<bool> #define vvb vector<vector<bool>> #define vs vector<string> typedef long long ll; typedef unsigned long long ull; using namespace std; ll mod = 1e9 + 7; template<class T>inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; }return false; } template<class T>inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; }return false; } ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } ll lcm(ll a, ll b) { ll g = gcd(a, b); return a * b / g; } bool is_prime(ll x) { for (ll i = 2; i * i <= x; i++) { if (x % i == 0)return false; } return true; } int main() { int n; cin >> n; string tmp; rep(i, n) { tmp += to_string(n - 1 - i); } string ans; rep(i, n)ans += tmp; if (n == 1)ans = "1"; co(ans); return 0; }