結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー s1dims1dim
提出日時 2015-09-16 17:45:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-26 12:10:15
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<algorithm>
#include<vector>
#include<string>
#include<math.h>

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) for(int i=0;i<(n);i++)
#define debug(x) cout<<#x<<": "<<x<<endl
#define pi M_PI

typedef long long ll;
typedef unsigned long long ull;

using namespace std;

int main(){
   cin.tie(0);
   ios::sync_with_stdio(false);

/*-------- code --------*/
   string n;
   cin >> n;
   cout << n << endl;
   
   sort(n.begin(), n.end());
   reverse(n.begin(), n.end());
   cout << n << endl;
}
0