結果
問題 | No.39 桁の数字を入れ替え |
ユーザー |
|
提出日時 | 2015-05-04 03:38:28 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 1,853 ms |
コンパイル使用メモリ | 158,968 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 06:20:17 |
合計ジャッジ時間 | 2,074 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long Int; #define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i)) int main() { string s; cin >> s; int n = s.size(); int ans = stoi(s); for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { swap(s[i], s[j]); int x = stoi(s); ans = max(ans, x); swap(s[i], s[j]); } } cout << ans << endl; }