結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,300 KB
testcase_01 AC 135 ms
41,148 KB
testcase_02 AC 134 ms
41,396 KB
testcase_03 AC 134 ms
41,388 KB
testcase_04 AC 135 ms
41,552 KB
testcase_05 AC 136 ms
41,140 KB
testcase_06 AC 131 ms
41,056 KB
testcase_07 AC 134 ms
40,760 KB
testcase_08 AC 198 ms
41,980 KB
testcase_09 AC 143 ms
41,244 KB
testcase_10 AC 209 ms
42,272 KB
testcase_11 AC 229 ms
42,760 KB
testcase_12 AC 204 ms
41,892 KB
testcase_13 AC 151 ms
41,528 KB
testcase_14 AC 213 ms
42,364 KB
testcase_15 AC 202 ms
42,236 KB
testcase_16 AC 227 ms
42,932 KB
testcase_17 AC 225 ms
42,852 KB
testcase_18 AC 221 ms
42,928 KB
testcase_19 AC 231 ms
42,856 KB
testcase_20 AC 229 ms
42,876 KB
testcase_21 AC 229 ms
42,760 KB
testcase_22 AC 224 ms
42,924 KB
testcase_23 AC 227 ms
42,892 KB
testcase_24 AC 224 ms
42,440 KB
testcase_25 AC 205 ms
42,200 KB
testcase_26 AC 196 ms
42,160 KB
testcase_27 AC 195 ms
42,208 KB
testcase_28 AC 220 ms
42,284 KB
testcase_29 AC 216 ms
42,472 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