結果

問題 No.39 桁の数字を入れ替え
ユーザー 37zigen37zigen
提出日時 2016-05-01 23:40:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-10-02 06:56:06
合計ジャッジ時間 5,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,516 KB
testcase_01 AC 132 ms
41,280 KB
testcase_02 AC 133 ms
41,684 KB
testcase_03 AC 132 ms
41,256 KB
testcase_04 AC 133 ms
41,516 KB
testcase_05 AC 132 ms
41,836 KB
testcase_06 AC 134 ms
41,468 KB
testcase_07 AC 122 ms
41,364 KB
testcase_08 AC 134 ms
41,380 KB
testcase_09 AC 133 ms
41,420 KB
testcase_10 AC 133 ms
41,424 KB
testcase_11 AC 132 ms
41,172 KB
testcase_12 AC 133 ms
41,256 KB
testcase_13 AC 134 ms
41,652 KB
testcase_14 AC 132 ms
41,792 KB
testcase_15 AC 133 ms
41,352 KB
testcase_16 AC 134 ms
41,484 KB
testcase_17 AC 133 ms
41,120 KB
testcase_18 AC 136 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int ans=n;
		for(int i=0;i<String.valueOf(n).length();i++){
			for(int j=i+1;j<String.valueOf(n).length();j++){
				int d=n;
				int dumy=d/(int)Math.pow(10, i)%10;
				d=d-dumy*(int)Math.pow(10, i);
				int dumy2=d/(int)Math.pow(10, j)%10;
				d=d-dumy2*(int)Math.pow(10, j);
				d+=(int)Math.pow(10, i)*dumy2;
				d+=(int)Math.pow(10, j)*dumy;
				ans=Math.max(ans, d);
			}
		}
		System.out.println(ans);
	}
}
0