結果

問題 No.39 桁の数字を入れ替え
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-03 15:10:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 905 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-07-05 17:38:01
合計ジャッジ時間 4,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
36,764 KB
testcase_01 AC 41 ms
36,452 KB
testcase_02 AC 40 ms
36,924 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
36,544 KB
testcase_08 AC 41 ms
36,848 KB
testcase_09 AC 41 ms
37,044 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
36,820 KB
testcase_15 AC 41 ms
36,720 KB
testcase_16 AC 42 ms
36,720 KB
testcase_17 AC 42 ms
36,724 KB
testcase_18 AC 41 ms
36,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No039 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String S = br.readLine();
            int N = Integer.parseInt(S);
            int max = N;
            int Slength = S.length();
            char[] c;
            char tmp;
            int newN = 0;
            for (int i = 1; i < Slength; i++) {
                c = S.toCharArray();
                tmp = c[i];
                c[i] = c[0];
                c[0] = tmp;
                newN = Integer.parseInt(String.copyValueOf(c));
                max = Math.max(max, newN);
            }

            System.out.println(max);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0