結果
問題 | No.39 桁の数字を入れ替え |
ユーザー |
![]() |
提出日時 | 2015-03-24 13:44:11 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 342 bytes |
コンパイル時間 | 1,445 ms |
コンパイル使用メモリ | 159,504 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 06:14:38 |
合計ジャッジ時間 | 2,174 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF = 1e9; const int MOD = 1e9+7; int main(void) { string s;cin >> s; ll ans = stoll(s); for(int i=0;i<s.size();i++){ for(int j=i+1;j<s.size();j++){ swap(s[i],s[j]); ans = max(ans,stoll(s)); swap(s[i],s[j]); } } cout << ans << endl; return 0; }