結果
問題 | No.1628 Sorting Integers (MAX of M) |
ユーザー | karinohito |
提出日時 | 2021-07-30 20:31:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 420 bytes |
コンパイル時間 | 1,653 ms |
コンパイル使用メモリ | 167,060 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 22:21:58 |
合計ジャッジ時間 | 2,154 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 6 |
ソースコード
//#include <atcoder/all> #include <bits/stdc++.h> #include <cmath> using namespace std; //using namespace atcoder; using ll = long long; #define all(A) A.begin(),A.end() using vll = vector<ll>; #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) using Graph = vector<vector<ll>>; int main() { ll N; cin>>N; vll C(9); rep(i,9)cin>>C[i]; rep(i,9){ rep(j,C[8-i])cout<<char('0'+9-i); } cout<<endl; }