結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | s1dim |
提出日時 | 2015-09-16 17:45:59 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 75,324 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 06:41:00 |
合計ジャッジ時間 | 1,066 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#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; }