結果

問題 No.170 スワップ文字列(Easy)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-30 19:35:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,136 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 78,560 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-06-02 06:11:12
合計ジャッジ時間 6,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,548 KB
testcase_01 AC 114 ms
54,004 KB
testcase_02 AC 108 ms
53,148 KB
testcase_03 AC 113 ms
54,144 KB
testcase_04 AC 116 ms
53,844 KB
testcase_05 AC 105 ms
53,460 KB
testcase_06 AC 105 ms
53,044 KB
testcase_07 AC 116 ms
53,852 KB
testcase_08 AC 118 ms
53,976 KB
testcase_09 AC 113 ms
53,660 KB
testcase_10 AC 117 ms
54,020 KB
testcase_11 AC 111 ms
53,968 KB
testcase_12 AC 118 ms
53,664 KB
testcase_13 AC 109 ms
53,944 KB
testcase_14 AC 110 ms
53,840 KB
testcase_15 AC 102 ms
52,384 KB
testcase_16 AC 102 ms
53,272 KB
testcase_17 AC 101 ms
52,976 KB
testcase_18 AC 113 ms
53,972 KB
testcase_19 AC 111 ms
54,024 KB
testcase_20 AC 104 ms
52,572 KB
testcase_21 AC 106 ms
52,988 KB
testcase_22 AC 96 ms
52,728 KB
testcase_23 AC 104 ms
53,028 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