結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | Yug_min_null |
提出日時 | 2021-11-15 11:32:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 212 bytes |
コンパイル時間 | 2,403 ms |
コンパイル使用メモリ | 195,228 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-12-14 09:56:54 |
合計ジャッジ時間 | 3,148 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ string N; cin >> N; sort(N.rbegin(), N.rend()); cout << N << endl; }