結果

問題 No.39 桁の数字を入れ替え
ユーザー nnasennnasen
提出日時 2017-12-15 02:23:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 168,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 10:42:06
合計ジャッジ時間 2,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) FOR(i,0,n)
#define SZ(n) (int)(n).size()
#define ALL(n) (n).begin(), (n).end()
#define MOD 1000003
#define INF 100000000
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PI;


int main() {
	string n;
	cin >> n;
	int np[16];
	REP(i, SZ(n)) {
		np[i] = n[i];
	}
	int m[2] = {};
	REP(i, SZ(n)) {
		if (m[0] < np[i]) {
			m[0] = np[i];
			m[1] = i;
		}
		if (m[0] == np[i]) {
			m[1] = i;
		}
	}
	REP(i, SZ(n)) {
		if (np[i] < m[0] || np[i] == m[0]) {
			swap(np[m[1]], np[i]);
			break;
		}
	}
	REP(i, SZ(n)) {
		cout << char(np[i]);
	}
	cout << endl;
	return 0;
}
0