結果

問題 No.39 桁の数字を入れ替え
ユーザー tentententen
提出日時 2022-07-28 17:24:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 1,485 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 37,356 KB
最終ジャッジ日時 2024-07-18 08:09:34
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,248 KB
testcase_01 AC 51 ms
36,912 KB
testcase_02 AC 53 ms
37,248 KB
testcase_03 AC 54 ms
37,136 KB
testcase_04 AC 54 ms
37,012 KB
testcase_05 AC 52 ms
37,196 KB
testcase_06 AC 52 ms
36,924 KB
testcase_07 AC 53 ms
37,200 KB
testcase_08 AC 54 ms
37,016 KB
testcase_09 AC 51 ms
36,944 KB
testcase_10 AC 52 ms
36,992 KB
testcase_11 AC 53 ms
36,972 KB
testcase_12 AC 52 ms
36,968 KB
testcase_13 AC 52 ms
37,288 KB
testcase_14 AC 53 ms
37,272 KB
testcase_15 AC 52 ms
36,948 KB
testcase_16 AC 52 ms
37,200 KB
testcase_17 AC 53 ms
37,204 KB
testcase_18 AC 54 ms
37,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        int n = values.length;
        for (int i = 0; i < n; i++) {
            char max = '0';
            int idx = i;
            for (int j = i + 1; j < n; j++) {
                if (max <= values[j]) {
                    max = values[j];
                    idx = j;
                }
            }
            if (max > values[i]) {
                char tmp = values[i];
                values[i] = values[idx];
                values[idx] = tmp;
                System.out.println(values);
                return;
            }
        }
        System.out.println(values);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0