結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | focus |
提出日時 | 2018-02-20 23:32:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 608 ms |
コンパイル使用メモリ | 69,444 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-13 13:18:02 |
合計ジャッジ時間 | 4,002 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<string> using namespace std; int main(){ string s; bool flag=true; cin >> s; while(flag){ flag = false; for(int i=1;i<s.size();i++){ if(s[i-1] < s[i]){ swap(s[i-1],s[i]); flag = true; } } } for(int i=0;i<s.size();i++) cout << s[i]; return 0; }