結果

問題 No.170 スワップ文字列(Easy)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-30 19:35:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 1,136 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-12-23 00:21:38
合計ジャッジ時間 7,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,372 KB
testcase_01 AC 129 ms
41,520 KB
testcase_02 AC 116 ms
41,084 KB
testcase_03 AC 125 ms
41,384 KB
testcase_04 AC 131 ms
41,104 KB
testcase_05 AC 130 ms
41,448 KB
testcase_06 AC 131 ms
41,384 KB
testcase_07 AC 127 ms
41,252 KB
testcase_08 AC 116 ms
41,192 KB
testcase_09 AC 128 ms
41,380 KB
testcase_10 AC 131 ms
41,084 KB
testcase_11 AC 130 ms
41,208 KB
testcase_12 AC 127 ms
41,892 KB
testcase_13 AC 114 ms
41,656 KB
testcase_14 AC 133 ms
41,568 KB
testcase_15 AC 131 ms
41,372 KB
testcase_16 AC 135 ms
41,324 KB
testcase_17 AC 120 ms
41,220 KB
testcase_18 AC 119 ms
41,212 KB
testcase_19 AC 129 ms
41,364 KB
testcase_20 AC 128 ms
41,384 KB
testcase_21 AC 129 ms
41,628 KB
testcase_22 AC 130 ms
41,216 KB
testcase_23 AC 125 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.170 スワップ文字列(Easy)


import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No170 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        String s = sc.next();
        int n = s.length();
        int[] cnt = new int[26];
        for (int i=0; i<n; i++) {
            cnt[s.charAt(i)-'A']++;
        }
        int[] fact = new int[n+1];
        fact[1] = 1;
        for (int i=2; i<=n; i++) {
            fact[i] = fact[i-1]*i;
        }

        int ans = fact[n];
        for (int i=0; i<26; i++) {
            if (cnt[i] > 1) {
                ans /= fact[cnt[i]];
            }
        }
        out.println(ans-1);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0