結果

問題 No.170 スワップ文字列(Easy)
ユーザー atkrymatkrym
提出日時 2016-10-23 23:53:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 887 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-06-02 06:29:56
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,992 KB
testcase_01 AC 115 ms
40,988 KB
testcase_02 AC 103 ms
40,076 KB
testcase_03 AC 112 ms
41,128 KB
testcase_04 AC 107 ms
41,124 KB
testcase_05 AC 95 ms
39,852 KB
testcase_06 AC 104 ms
41,196 KB
testcase_07 AC 93 ms
39,508 KB
testcase_08 AC 109 ms
40,908 KB
testcase_09 AC 108 ms
41,016 KB
testcase_10 AC 95 ms
39,988 KB
testcase_11 AC 105 ms
41,092 KB
testcase_12 AC 110 ms
40,852 KB
testcase_13 AC 105 ms
40,904 KB
testcase_14 AC 104 ms
41,128 KB
testcase_15 AC 89 ms
39,580 KB
testcase_16 AC 97 ms
39,988 KB
testcase_17 AC 104 ms
40,880 KB
testcase_18 AC 97 ms
40,348 KB
testcase_19 AC 97 ms
40,016 KB
testcase_20 AC 94 ms
40,100 KB
testcase_21 AC 103 ms
40,644 KB
testcase_22 AC 96 ms
40,516 KB
testcase_23 AC 104 ms
40,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        int l = s.length();
        Map<String, Integer> map = new HashMap<>();
 
        for (int i = 0;i < l;i++) {
            String tmp = s.substring(i, i+1);
            if (map.containsKey(tmp)) {
                map.put(tmp, map.get(tmp)+1);
            } else {
                map.put(tmp, 1);
            }
        }
        
        int ret = fact(l);
        
        for (Map.Entry<String, Integer> entry : map.entrySet()) {
            ret /= fact(entry.getValue());
        }
        
        System.out.println(ret-1);
    }

    private static int fact(int n) {
        int ret = 1;
        for (int i = 1;i <= n;i++) {
            ret *= i;
        }
        return ret;
    }
}
0