結果

問題 No.927 Second Permutation
ユーザー 37zigen37zigen
提出日時 2019-11-22 21:59:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 78,012 KB
実行使用メモリ 58,528 KB
最終ジャッジ日時 2024-10-11 03:37:00
合計ジャッジ時間 9,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,860 KB
testcase_01 AC 124 ms
54,136 KB
testcase_02 AC 115 ms
52,668 KB
testcase_03 AC 130 ms
53,856 KB
testcase_04 AC 130 ms
54,268 KB
testcase_05 AC 123 ms
53,720 KB
testcase_06 AC 124 ms
53,984 KB
testcase_07 AC 127 ms
54,208 KB
testcase_08 AC 229 ms
57,588 KB
testcase_09 AC 144 ms
54,192 KB
testcase_10 AC 243 ms
57,596 KB
testcase_11 AC 271 ms
58,172 KB
testcase_12 AC 233 ms
57,176 KB
testcase_13 AC 168 ms
54,120 KB
testcase_14 AC 244 ms
57,884 KB
testcase_15 AC 220 ms
57,164 KB
testcase_16 AC 290 ms
58,364 KB
testcase_17 AC 279 ms
58,528 KB
testcase_18 AC 276 ms
57,748 KB
testcase_19 AC 277 ms
58,116 KB
testcase_20 AC 276 ms
58,104 KB
testcase_21 AC 284 ms
58,212 KB
testcase_22 AC 279 ms
58,296 KB
testcase_23 AC 292 ms
58,020 KB
testcase_24 AC 209 ms
54,432 KB
testcase_25 AC 198 ms
54,148 KB
testcase_26 AC 182 ms
54,372 KB
testcase_27 AC 178 ms
53,916 KB
testcase_28 AC 204 ms
54,160 KB
testcase_29 AC 194 ms
54,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.io.*;

class Main
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        char[] cs = sc.next().toCharArray();
        int[] a = new int[cs.length];
        int cnt0 = 0;
        for (int i = 0; i < a.length; ++i) {
            a[i] = (int) (cs[i] - '0');
            if (a[i] == 0) ++cnt0;
        }
        Arrays.sort(a);
        boolean same = true;
        for (int i = 0; i < a.length; ++i) same &= a[i] == a[0];
        if (same || cnt0 == a.length - 1) {
            System.out.println(-1);
            return;
        }
        int p = 0;
        while (a[p] == a[p + 1]) ++p;
        a[p + 1] ^= a[p];
        a[p] ^= a[p + 1];
        a[p + 1] ^= a[p];
        PrintWriter pw = new PrintWriter(System.out);
        for (int i = a.length - 1; i >= 0; --i) {
            pw.print(a[i]);
        }
        pw.println();
        pw.close();
    }
}
0