結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | nnasen |
提出日時 | 2017-10-01 03:25:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 466 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 170,712 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 21:03:28 |
合計ジャッジ時間 | 2,600 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 8 ms
6,816 KB |
testcase_03 | AC | 9 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> #define FOR(i,a,b) for(int i = (a); i < (b); ++i) #define REP(i,n) FOR(i,0,n) #define SZ(n) (int)(n).size() #define ALL(n) (n).begin(), (n).end() #define MOD 1000000007 using namespace std; typedef long long LL; typedef vector<int> VI; int main() { string n; cin >> n; vector<char> nn(SZ(n)); REP(i, SZ(n)) nn[i] = n[i]; sort(ALL(nn), greater<int>()); REP(i, SZ(n)) cout << nn[i]; cout << endl; return 0; }