結果

問題 No.927 Second Permutation
ユーザー tentententen
提出日時 2020-08-27 01:59:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 42,952 KB
最終ジャッジ日時 2024-11-07 14:25:47
合計ジャッジ時間 9,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,352 KB
testcase_01 AC 116 ms
40,696 KB
testcase_02 AC 110 ms
39,828 KB
testcase_03 AC 125 ms
41,168 KB
testcase_04 AC 125 ms
41,188 KB
testcase_05 AC 124 ms
40,932 KB
testcase_06 AC 125 ms
41,308 KB
testcase_07 AC 124 ms
41,012 KB
testcase_08 AC 186 ms
42,052 KB
testcase_09 AC 137 ms
41,056 KB
testcase_10 AC 195 ms
41,932 KB
testcase_11 AC 209 ms
42,896 KB
testcase_12 AC 179 ms
41,980 KB
testcase_13 AC 131 ms
40,408 KB
testcase_14 AC 197 ms
42,136 KB
testcase_15 AC 186 ms
42,168 KB
testcase_16 AC 216 ms
42,952 KB
testcase_17 AC 210 ms
42,756 KB
testcase_18 AC 212 ms
42,816 KB
testcase_19 AC 205 ms
42,416 KB
testcase_20 AC 211 ms
42,776 KB
testcase_21 AC 213 ms
42,768 KB
testcase_22 AC 213 ms
42,792 KB
testcase_23 AC 206 ms
42,816 KB
testcase_24 AC 201 ms
42,332 KB
testcase_25 AC 189 ms
41,808 KB
testcase_26 AC 177 ms
41,912 KB
testcase_27 AC 180 ms
42,140 KB
testcase_28 AC 205 ms
42,432 KB
testcase_29 AC 203 ms
42,228 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();
    	Arrays.sort(arr);
    	if (arr[0] == arr[arr.length - 1]) {
    	    System.out.println(-1);
    	    return;
    	}
    	for (int i = 1; i < arr.length; i++) {
    	    if (arr[i] != arr[0]) {
    	        char x = arr[i];
    	        arr[i] = arr[i - 1];
    	        arr[i - 1] = x;
    	        break;
    	    }
    	}
    	if (arr[arr.length - 1] == '0') {
    	    System.out.println(-1);
    	    return;
    	}
    	StringBuilder sb = new StringBuilder(new String(arr));
    	sb.reverse();
    	System.out.println(sb);
    }
}
0