結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | aaaaaaiu |
提出日時 | 2019-07-30 10:46:35 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 180 bytes |
コンパイル時間 | 2,129 ms |
コンパイル使用メモリ | 197,584 KB |
最終ジャッジ日時 | 2025-01-07 10:04:19 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { string n; cin >> n; sort(n.rbegin(), n.rend()); cout << n << endl; return 0; }