結果
| 問題 | No.39 桁の数字を入れ替え | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-09-25 06:40:19 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 363 bytes | 
| コンパイル時間 | 550 ms | 
| コンパイル使用メモリ | 64,308 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-28 05:44:04 | 
| 合計ジャッジ時間 | 1,296 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 19 | 
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main(){
    string s;
    cin >> s;
    int ans = 0;
    for(int i=0;i < s.size();i++){
        for(int j=0;j < s.size();j++){
            swap(s[i],s[j]);
            int x = stoi(s);
            ans = max(ans,x);
            swap(s[i],s[j]);
        }
    }
    cout << ans << endl;
    return 0;
}
            
            
            
        