結果

問題 No.927 Second Permutation
ユーザー tentententen
提出日時 2022-09-13 17:48:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 1,863 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 53,664 KB
最終ジャッジ日時 2024-05-08 01:53:22
合計ジャッジ時間 7,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
38,284 KB
testcase_01 AC 53 ms
36,780 KB
testcase_02 AC 71 ms
38,068 KB
testcase_03 AC 72 ms
38,480 KB
testcase_04 AC 73 ms
38,392 KB
testcase_05 AC 53 ms
36,936 KB
testcase_06 AC 53 ms
36,756 KB
testcase_07 AC 70 ms
38,176 KB
testcase_08 AC 100 ms
44,984 KB
testcase_09 AC 77 ms
38,944 KB
testcase_10 AC 134 ms
47,016 KB
testcase_11 AC 170 ms
48,332 KB
testcase_12 AC 123 ms
46,136 KB
testcase_13 AC 80 ms
39,376 KB
testcase_14 AC 109 ms
48,208 KB
testcase_15 AC 101 ms
44,584 KB
testcase_16 AC 176 ms
50,200 KB
testcase_17 AC 177 ms
51,880 KB
testcase_18 AC 174 ms
50,792 KB
testcase_19 AC 184 ms
53,664 KB
testcase_20 AC 179 ms
50,352 KB
testcase_21 AC 175 ms
49,748 KB
testcase_22 AC 177 ms
50,512 KB
testcase_23 AC 182 ms
50,544 KB
testcase_24 AC 126 ms
43,592 KB
testcase_25 AC 237 ms
44,696 KB
testcase_26 AC 159 ms
43,984 KB
testcase_27 AC 105 ms
45,712 KB
testcase_28 AC 303 ms
48,804 KB
testcase_29 AC 317 ms
46,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static boolean exist = false;
    static int total = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int[] counts = new int[10];
        for (char c : sc.next().toCharArray()) {
            counts[c - '0']++;
            total++;
        }
        make(0, counts, new char[total]);
        System.out.println(-1);
    }
    
    static void make(int idx, int[] counts, char[] str) {
        if (idx == total) {
            if (exist) {
                if (str[0] == '0') {
                    System.out.println(-1);
                } else {
                    System.out.println(str);
                }
                System.exit(0);
            } else {
                exist = true;
                return;
            }
        }
        for (int i = 9; i >= 0; i--) {
            if (counts[i] == 0) {
                continue;
            }
            counts[i]--;
            str[idx] = (char)(i + '0');
            make(idx + 1, counts, str);
            counts[i]++;
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0