結果

問題 No.39 桁の数字を入れ替え
ユーザー kou6839kou6839
提出日時 2014-11-18 17:25:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 76,768 KB
実行使用メモリ 55,256 KB
最終ジャッジ日時 2024-10-02 05:56:52
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,860 KB
testcase_01 AC 159 ms
54,692 KB
testcase_02 AC 132 ms
54,260 KB
testcase_03 AC 158 ms
54,672 KB
testcase_04 AC 164 ms
55,256 KB
testcase_05 AC 155 ms
55,168 KB
testcase_06 AC 154 ms
55,028 KB
testcase_07 AC 156 ms
54,896 KB
testcase_08 AC 128 ms
54,236 KB
testcase_09 AC 125 ms
54,128 KB
testcase_10 AC 155 ms
54,888 KB
testcase_11 AC 161 ms
54,740 KB
testcase_12 AC 158 ms
55,084 KB
testcase_13 AC 156 ms
54,984 KB
testcase_14 AC 154 ms
54,716 KB
testcase_15 AC 164 ms
55,020 KB
testcase_16 AC 161 ms
55,116 KB
testcase_17 AC 159 ms
54,980 KB
testcase_18 AC 151 ms
54,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n= sc.nextInt();
		String num = n+"";
		for(int i=0;i<num.length()-1;i++){
			int max=num.charAt(i);
			int basyo=i;
			for(int j=i+1;j<num.length();j++){
				if(max<=num.charAt(j)&num.charAt(j)!=num.charAt(i)){
					basyo=j;
					max=num.charAt(j);
				}
			}
			if(basyo!=i){
				char[] sss = num.toCharArray();
				char temp = sss[i];
				sss[i]=sss[basyo];
				sss[basyo]=temp;
				String ans="";
				for(int k=0;k<num.length();k++){
					ans+=sss[k];
				}
				System.out.println(ans);
				return;
			}
			
		}
		System.out.println(n);

	}
}	
0