結果

問題 No.256 桁の数字を入れ替え (2)
コンテスト
ユーザー s1dim
提出日時 2015-09-16 17:45:59
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 552 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 440 ms
コンパイル使用メモリ 96,428 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-18 04:35:35
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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