結果
問題 | No.39 桁の数字を入れ替え |
ユーザー |
![]() |
提出日時 | 2016-07-22 14:06:32 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 60,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 07:02:56 |
合計ジャッジ時間 | 1,172 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<stdlib.h> using namespace std; int main(){ string s; cin>> s; int len=s.size(); int ans=atoi(s.c_str()); for(int i=0; i<len; i++){ for(int j=0; j<len; j++){ swap(s[i], s[j]); ans=max(ans, atoi(s.c_str())); swap(s[i], s[j]); } } cout<< ans<< endl; return 0; }