結果

問題 No.39 桁の数字を入れ替え
ユーザー tsunabittsunabit
提出日時 2019-09-05 11:31:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 975 bytes
コンパイル時間 4,530 ms
コンパイル使用メモリ 80,856 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2025-01-03 03:09:57
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,584 KB
testcase_01 AC 115 ms
41,684 KB
testcase_02 AC 116 ms
41,552 KB
testcase_03 AC 105 ms
41,460 KB
testcase_04 AC 112 ms
41,472 KB
testcase_05 AC 119 ms
41,716 KB
testcase_06 AC 117 ms
41,304 KB
testcase_07 AC 115 ms
41,456 KB
testcase_08 AC 129 ms
41,600 KB
testcase_09 AC 129 ms
41,576 KB
testcase_10 AC 115 ms
41,344 KB
testcase_11 AC 114 ms
41,708 KB
testcase_12 AC 115 ms
41,600 KB
testcase_13 AC 111 ms
41,728 KB
testcase_14 AC 113 ms
41,588 KB
testcase_15 AC 116 ms
41,668 KB
testcase_16 AC 115 ms
41,556 KB
testcase_17 AC 109 ms
41,692 KB
testcase_18 AC 114 ms
41,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No39 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] n = sc.next().split("");
		int max = hoge(n);
		String[] temp = new String[n.length];
		for(int k = 0; k < n.length; k++) {
			temp[k] = n[k];
		}
		
		for(int i = 0; i < n.length; i++) {
			for(int j = i; j < n.length; j++) {
				String t = temp[i];
				temp[i] = temp[j];
				temp[j] = t;
				int v = hoge(temp);
//				System.out.println("[" + i + "]と[" + j + "] = " + v);
				if(max < v) max = v;
//				temp = n;
//				System.arraycopy(n, 0, temp, 0, n.length);
				for(int k = 0; k < n.length; k++) {
					temp[k] = n[k];
				}
//				System.out.println("temp初期化 = " + hoge(temp));
			}
		}
		System.out.println(max);
    }
	
	public static int hoge(String[] n) {
		String t = "";
		for(String v : n) {
			t += v;
		}
		int v = Integer.parseInt(t);
//		System.out.println(v);
		return v;
	}
}
0