結果

問題 No.170 スワップ文字列(Easy)
ユーザー atkrymatkrym
提出日時 2016-10-23 23:53:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 887 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-12-23 00:44:27
合計ジャッジ時間 6,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,120 KB
testcase_01 AC 126 ms
41,180 KB
testcase_02 AC 137 ms
41,188 KB
testcase_03 AC 132 ms
41,132 KB
testcase_04 AC 124 ms
41,388 KB
testcase_05 AC 119 ms
41,144 KB
testcase_06 AC 128 ms
40,944 KB
testcase_07 AC 127 ms
41,344 KB
testcase_08 AC 132 ms
41,244 KB
testcase_09 AC 133 ms
41,216 KB
testcase_10 AC 125 ms
41,264 KB
testcase_11 AC 126 ms
40,996 KB
testcase_12 AC 128 ms
41,200 KB
testcase_13 AC 126 ms
41,176 KB
testcase_14 AC 129 ms
41,380 KB
testcase_15 AC 116 ms
40,136 KB
testcase_16 AC 117 ms
40,160 KB
testcase_17 AC 127 ms
41,108 KB
testcase_18 AC 131 ms
41,136 KB
testcase_19 AC 116 ms
40,276 KB
testcase_20 AC 128 ms
41,376 KB
testcase_21 AC 129 ms
40,948 KB
testcase_22 AC 129 ms
41,396 KB
testcase_23 AC 127 ms
41,196 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