結果
問題 | No.39 桁の数字を入れ替え |
ユーザー |
![]() |
提出日時 | 2015-07-23 03:15:41 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 529 ms |
コンパイル使用メモリ | 59,176 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 06:31:10 |
合計ジャッジ時間 | 1,201 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include<iostream> #include<string> #include<algorithm> using namespace std; int main(){ string n; cin >> n; string ret = n; for (int i = 0; i < n.size(); i++){ for (int j = 1; j < n.size(); j++){ swap(n[i], n[j]); ret = max(ret, n); swap(n[i], n[j]); } } cout << ret << endl; return 0; }