結果

問題 No.927 Second Permutation
ユーザー ks2mks2m
提出日時 2019-11-22 23:02:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 54,720 KB
最終ジャッジ日時 2024-10-11 04:39:17
合計ジャッジ時間 9,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,828 KB
testcase_01 AC 111 ms
52,556 KB
testcase_02 AC 126 ms
54,084 KB
testcase_03 AC 124 ms
53,844 KB
testcase_04 AC 126 ms
53,932 KB
testcase_05 AC 123 ms
54,104 KB
testcase_06 AC 112 ms
53,072 KB
testcase_07 AC 122 ms
53,836 KB
testcase_08 AC 162 ms
54,092 KB
testcase_09 AC 131 ms
53,864 KB
testcase_10 AC 190 ms
54,192 KB
testcase_11 AC 207 ms
54,364 KB
testcase_12 AC 183 ms
54,720 KB
testcase_13 AC 149 ms
54,188 KB
testcase_14 AC 196 ms
54,360 KB
testcase_15 AC 188 ms
54,604 KB
testcase_16 AC 212 ms
54,716 KB
testcase_17 AC 210 ms
54,652 KB
testcase_18 AC 213 ms
54,184 KB
testcase_19 AC 225 ms
54,452 KB
testcase_20 AC 213 ms
54,336 KB
testcase_21 AC 214 ms
54,508 KB
testcase_22 AC 217 ms
53,948 KB
testcase_23 AC 213 ms
54,700 KB
testcase_24 AC 210 ms
54,220 KB
testcase_25 AC 197 ms
53,976 KB
testcase_26 AC 183 ms
54,412 KB
testcase_27 AC 179 ms
53,856 KB
testcase_28 AC 209 ms
54,688 KB
testcase_29 AC 204 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String x = sc.next();
		sc.close();

		int[] a = new int[10];
		for (int i = 0; i < x.length(); i++) {
			a[x.charAt(i) - '0']++;
		}

		StringBuilder sb = new StringBuilder();
		for (int i = 9; i >= 0; i--) {
			while (a[i] > 0) {
				sb.append(i);
				a[i]--;
			}
		}

		boolean flg = false;
		for (int i = sb.length() - 1; i > 0; i--) {
			if (sb.charAt(i) != sb.charAt(i - 1)) {
				char ch = sb.charAt(i);
				sb.setCharAt(i, sb.charAt(i - 1));
				sb.setCharAt(i - 1, ch);
				flg = true;
				break;
			}
		}
		if (!flg || sb.charAt(0) == '0') {
			System.out.println(-1);
			return;
		}
		System.out.println(sb.toString());
	}
}
0