結果

問題 No.927 Second Permutation
ユーザー htensaihtensai
提出日時 2019-12-07 11:04:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 43,440 KB
最終ジャッジ日時 2024-06-07 00:27:12
合計ジャッジ時間 8,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,664 KB
testcase_01 AC 129 ms
41,568 KB
testcase_02 AC 126 ms
41,372 KB
testcase_03 AC 125 ms
41,036 KB
testcase_04 AC 125 ms
41,320 KB
testcase_05 AC 114 ms
39,984 KB
testcase_06 AC 130 ms
41,300 KB
testcase_07 AC 131 ms
41,408 KB
testcase_08 AC 169 ms
41,292 KB
testcase_09 AC 133 ms
41,676 KB
testcase_10 AC 190 ms
42,560 KB
testcase_11 AC 204 ms
42,784 KB
testcase_12 AC 183 ms
42,156 KB
testcase_13 AC 143 ms
41,780 KB
testcase_14 AC 197 ms
42,716 KB
testcase_15 AC 186 ms
42,052 KB
testcase_16 AC 213 ms
42,672 KB
testcase_17 AC 206 ms
42,672 KB
testcase_18 AC 211 ms
42,844 KB
testcase_19 AC 218 ms
42,984 KB
testcase_20 AC 201 ms
43,440 KB
testcase_21 AC 199 ms
43,012 KB
testcase_22 AC 212 ms
42,672 KB
testcase_23 AC 212 ms
42,864 KB
testcase_24 AC 192 ms
42,892 KB
testcase_25 AC 181 ms
42,596 KB
testcase_26 AC 173 ms
42,048 KB
testcase_27 AC 174 ms
42,200 KB
testcase_28 AC 199 ms
42,820 KB
testcase_29 AC 192 ms
42,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int length = arr.length;
		Arrays.sort(arr);
		char max = arr[length - 1];
		for (int i = 0; i < length - 1; i++) {
		    if (arr[i] == max || (i == length - 2 && arr[i] == '0')) {
		        break;
		    }
		    if (arr[i] == arr[i + 1]) {
		        continue;
		    }
		    char tmp = arr[i];
		    arr[i] = arr[i + 1];
		    arr[i + 1] = tmp;
		    StringBuilder sb = new StringBuilder(new String(arr));
		    sb.reverse();
		    System.out.println(sb);
		    return;
		}
		System.out.println(-1);
   }
}

0