結果
問題 |
No.39 桁の数字を入れ替え
|
ユーザー |
![]() |
提出日時 | 2018-10-07 21:02:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 476 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 172,504 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 14:18:02 |
合計ジャッジ時間 | 2,400 ms |
ジャッジサーバーID (参考情報) |
judge / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; string n,m; int main() { cin >> n; m = n; sort(m.rbegin(),m.rend()); int x = 0; for(int i = 0; i < n.length(); i++){ if(n[i] != m[i]){ x = i; break; } } for(int i = n.length() - 1; i >= x; i--){ if(n[i] == m[x]){ swap(n[i],n[x]); break; } } cout << n << endl; return 0; }