結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー 沙耶花
提出日時 2022-03-23 18:24:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 4,220 ms
コンパイル使用メモリ 253,668 KB
最終ジャッジ日時 2025-01-28 11:08:45
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001



int main(){
	string n;
	cin>>n;
	sort(n.rbegin(),n.rend());
	cout<<n<<endl;
	
	return 0;
}
0