結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,960 KB
testcase_01 AC 123 ms
53,720 KB
testcase_02 AC 122 ms
53,992 KB
testcase_03 AC 110 ms
53,008 KB
testcase_04 AC 122 ms
53,916 KB
testcase_05 AC 109 ms
52,672 KB
testcase_06 AC 121 ms
54,100 KB
testcase_07 AC 105 ms
53,060 KB
testcase_08 AC 168 ms
53,712 KB
testcase_09 AC 129 ms
54,040 KB
testcase_10 AC 182 ms
54,180 KB
testcase_11 AC 195 ms
56,168 KB
testcase_12 AC 181 ms
54,084 KB
testcase_13 AC 139 ms
53,936 KB
testcase_14 AC 185 ms
54,096 KB
testcase_15 AC 183 ms
54,452 KB
testcase_16 AC 187 ms
56,288 KB
testcase_17 AC 189 ms
56,368 KB
testcase_18 AC 196 ms
56,404 KB
testcase_19 AC 184 ms
56,272 KB
testcase_20 AC 188 ms
56,392 KB
testcase_21 AC 198 ms
56,300 KB
testcase_22 AC 201 ms
56,616 KB
testcase_23 AC 204 ms
56,320 KB
testcase_24 AC 188 ms
54,248 KB
testcase_25 AC 177 ms
54,052 KB
testcase_26 AC 169 ms
54,068 KB
testcase_27 AC 156 ms
53,996 KB
testcase_28 AC 199 ms
54,236 KB
testcase_29 AC 187 ms
54,148 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