結果

問題 No.39 桁の数字を入れ替え
ユーザー spaciaspacia
提出日時 2016-01-13 23:26:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 785 bytes
コンパイル時間 2,807 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 37,608 KB
最終ジャッジ日時 2024-10-02 06:50:35
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
37,608 KB
testcase_01 AC 60 ms
37,212 KB
testcase_02 AC 61 ms
37,332 KB
testcase_03 AC 61 ms
37,000 KB
testcase_04 AC 60 ms
37,256 KB
testcase_05 AC 62 ms
37,128 KB
testcase_06 AC 62 ms
37,188 KB
testcase_07 AC 61 ms
37,356 KB
testcase_08 AC 63 ms
37,184 KB
testcase_09 AC 61 ms
37,316 KB
testcase_10 AC 58 ms
37,348 KB
testcase_11 AC 60 ms
37,288 KB
testcase_12 AC 60 ms
37,316 KB
testcase_13 AC 58 ms
37,020 KB
testcase_14 AC 57 ms
36,896 KB
testcase_15 AC 59 ms
37,076 KB
testcase_16 AC 61 ms
37,144 KB
testcase_17 AC 59 ms
36,812 KB
testcase_18 AC 58 ms
36,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void solve (int n) {
		char[] c = (n + "").toCharArray();
		for (int i = 0; i < c.length - 1; i++) {
			int d = c[i] - '0';
			int max = d , maxI = -1;
			for (int j = c.length - 1; j > i; j--) {
				int e = c[j] - '0';
				if (max < e) {
					max = e;
					maxI = j;
				}
			}
			if (maxI != -1) {
				char tmp = c[i];
				c[i] = c[maxI];
				c[maxI] = tmp;
				break;
			}
		}
		
		for (char d : c)
			System.out.print(d);
		out("");
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		
		solve(n);
	}
}
0