結果

問題 No.170 スワップ文字列(Easy)
ユーザー SagTokiSagToki
提出日時 2018-05-30 14:02:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 3,212 bytes
コンパイル時間 4,041 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-06-30 08:12:17
合計ジャッジ時間 8,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,996 KB
testcase_01 AC 130 ms
53,920 KB
testcase_02 AC 130 ms
54,096 KB
testcase_03 AC 132 ms
54,128 KB
testcase_04 AC 130 ms
54,136 KB
testcase_05 AC 132 ms
53,852 KB
testcase_06 AC 129 ms
54,052 KB
testcase_07 AC 130 ms
54,136 KB
testcase_08 AC 134 ms
53,856 KB
testcase_09 AC 131 ms
53,816 KB
testcase_10 AC 130 ms
54,244 KB
testcase_11 AC 130 ms
53,796 KB
testcase_12 AC 132 ms
54,072 KB
testcase_13 AC 130 ms
54,300 KB
testcase_14 AC 130 ms
53,912 KB
testcase_15 AC 133 ms
54,332 KB
testcase_16 AC 128 ms
54,096 KB
testcase_17 AC 129 ms
54,036 KB
testcase_18 AC 131 ms
53,992 KB
testcase_19 AC 129 ms
53,820 KB
testcase_20 AC 133 ms
53,772 KB
testcase_21 AC 131 ms
54,088 KB
testcase_22 AC 135 ms
54,156 KB
testcase_23 AC 135 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

//メインメソッド
public class SwapString {
    public static void main(String[] args){
        ArrayList<Character> Character = Input();
        Collections.sort(Character, Comparator.reverseOrder());
        int len = Character.size();
        //Mapを定義してkeyをアルファベット、valueを0を初期値とする
        Map <Character,Integer> Count = new HashMap<>();
        int ans = 0;
        for(int i = 0 ; i < Character.size() ; i++){
            char now = (char) Character.get(i);
            
            if(Count.containsKey(now)){
                Count.put(now , Count.get(now) + 1);
            }else{
                Count.put(now , 1);
            }
        }
        for(int i = 0 ; i < Character.size() - 1 ;i++){
            if(Objects.equals(Character.get(i), Character.get(i+1))){
               Character.remove(i);
               i--;
            }
        }
        long Answer = 1 ;
        for(int k = 0 ; k < Character.size() ; k++){
            Answer *= Combination(len , Count.get(Character.get(k)));
            len -= Count.get(Character.get(k));
        }
        
        System.out.println(Answer - 1);
    }
    
    //文字列を入力して種類と長さを判定するメソッド
    public static ArrayList<Character> Input(){
        Scanner scanner = new Scanner(System.in);
        String S = scanner.nextLine();
        char[] Character = S.toCharArray();
        try{
            Pattern pattern = Pattern.compile(".*[^A-Z].*");
            Matcher matcher = pattern.matcher(S);
            //文字列に含まれる文字が大文字のアルファベットであるかの判定
            if(matcher.find()){
                System.out.println("文字列は大文字アルファベットで入力してください");
                System.exit(0);
            }
            //文字列の長さが1以上8以下であるかの判定
            if(Character.length < 0 || Character.length > 8){
                System.out.println("文字列は1文字以上8文字以下で入力してください");
                System.exit(0);
            }   
        }catch(Exception E){
            System.out.println("想定外のエラーです");
        }
        //char配列をリストに変換して戻り値にする
        ArrayList<Character> character = new ArrayList<>();
        for(int i = 0 ; i < Character.length ; i++){
            character.add(Character[i]);
        }
        return character;
    }
    
    //コンビネーションの計算を行うメソッド
    public static long Combination(int n , int m){
        if( n < m || m < 0 ) {
           System.out.println( "引数の値が不正です" );
           System.exit(0);
        }
        long Result = 1;
        m = ( n - m < m ? n - m : m );
        for( int ns = n - m + 1, ms = 1; ms <= m; ns ++, ms ++ ) {
            Result *= ns;
            Result /= ms;
        }
        return Result;
    }
}
0