結果

問題 No.927 Second Permutation
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-23 00:07:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 43,576 KB
最終ジャッジ日時 2024-10-11 06:34:20
合計ジャッジ時間 8,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,244 KB
testcase_01 AC 122 ms
41,012 KB
testcase_02 AC 107 ms
41,044 KB
testcase_03 AC 122 ms
41,028 KB
testcase_04 AC 120 ms
41,172 KB
testcase_05 AC 120 ms
41,048 KB
testcase_06 AC 123 ms
41,356 KB
testcase_07 AC 124 ms
41,044 KB
testcase_08 AC 160 ms
42,032 KB
testcase_09 AC 131 ms
41,668 KB
testcase_10 AC 187 ms
42,768 KB
testcase_11 AC 204 ms
42,748 KB
testcase_12 AC 184 ms
42,304 KB
testcase_13 AC 147 ms
41,540 KB
testcase_14 AC 197 ms
42,836 KB
testcase_15 AC 186 ms
42,564 KB
testcase_16 AC 205 ms
43,084 KB
testcase_17 AC 212 ms
43,188 KB
testcase_18 AC 216 ms
42,904 KB
testcase_19 AC 215 ms
42,840 KB
testcase_20 AC 207 ms
43,576 KB
testcase_21 AC 215 ms
42,864 KB
testcase_22 AC 207 ms
43,020 KB
testcase_23 AC 208 ms
43,092 KB
testcase_24 AC 190 ms
42,772 KB
testcase_25 AC 190 ms
42,568 KB
testcase_26 AC 169 ms
42,440 KB
testcase_27 AC 167 ms
42,012 KB
testcase_28 AC 204 ms
42,968 KB
testcase_29 AC 198 ms
42,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args){
        Scanner stdIn = new Scanner(System.in);
        String x = stdIn.next();
        char c[] = x.toCharArray();
        char copy[] = new char[x.length()];
        
        Arrays.sort(c);
        
        for(int i = 0; i < x.length(); i++){
            copy[i] = c[x.length() - i - 1];
        }
        
        boolean flag = false;
        
        for(int i = x.length() - 2; i >= 0; i--){
            if(copy[x.length() - 1] != copy[i]){
                int tmp = copy[i + 1];
                copy[i + 1] = copy[i];
                copy[i] = (char)tmp;
                flag = true;
                break;
            }
        }
        
        if(flag && copy[0] != '0'){
            System.out.println(copy);
        }else{
            System.out.println(-1);
        }
        
    }
}
0