結果

問題 No.927 Second Permutation
ユーザー d-yoshd-yosh
提出日時 2019-12-09 09:00:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 58,788 KB
最終ジャッジ日時 2024-06-11 20:37:32
合計ジャッジ時間 8,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,956 KB
testcase_01 AC 111 ms
54,104 KB
testcase_02 AC 102 ms
52,780 KB
testcase_03 AC 114 ms
54,228 KB
testcase_04 AC 101 ms
53,132 KB
testcase_05 AC 112 ms
54,164 KB
testcase_06 AC 100 ms
53,104 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 194 ms
54,512 KB
testcase_25 AC 176 ms
54,520 KB
testcase_26 AC 169 ms
54,496 KB
testcase_27 AC 172 ms
54,424 KB
testcase_28 AC 184 ms
54,460 KB
testcase_29 AC 169 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        if(s.chars().distinct().filter(i -> i-48 != 0).count() < 2) {
            System.out.println("-1");
            return;
        }

        char[] chars = s.toCharArray();
        Arrays.sort(chars);

        StringBuilder sb = new StringBuilder();
        for (int i=0;i<chars.length - 2;i++) {
            sb.append(chars[chars.length - i - 1]);
        }
        sb.append(chars[0]);
        sb.append(chars[1]);

        System.out.println(sb.toString());
    }
}
0