結果

問題 No.927 Second Permutation
ユーザー htensaihtensai
提出日時 2019-12-07 11:04:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 42,996 KB
最終ジャッジ日時 2024-12-24 19:57:06
合計ジャッジ時間 9,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
39,856 KB
testcase_01 AC 133 ms
41,224 KB
testcase_02 AC 136 ms
41,464 KB
testcase_03 AC 134 ms
41,416 KB
testcase_04 AC 132 ms
41,464 KB
testcase_05 AC 132 ms
41,440 KB
testcase_06 AC 137 ms
40,924 KB
testcase_07 AC 140 ms
41,288 KB
testcase_08 AC 200 ms
42,064 KB
testcase_09 AC 142 ms
41,444 KB
testcase_10 AC 213 ms
42,460 KB
testcase_11 AC 222 ms
42,620 KB
testcase_12 AC 209 ms
42,212 KB
testcase_13 AC 152 ms
41,480 KB
testcase_14 AC 210 ms
42,652 KB
testcase_15 AC 202 ms
42,200 KB
testcase_16 AC 226 ms
42,856 KB
testcase_17 AC 226 ms
42,852 KB
testcase_18 AC 229 ms
42,760 KB
testcase_19 AC 214 ms
42,996 KB
testcase_20 AC 229 ms
42,660 KB
testcase_21 AC 225 ms
42,664 KB
testcase_22 AC 228 ms
42,732 KB
testcase_23 AC 231 ms
42,596 KB
testcase_24 AC 211 ms
42,292 KB
testcase_25 AC 209 ms
41,932 KB
testcase_26 AC 184 ms
41,960 KB
testcase_27 AC 187 ms
42,056 KB
testcase_28 AC 218 ms
42,560 KB
testcase_29 AC 222 ms
42,316 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