結果

問題 No.170 スワップ文字列(Easy)
ユーザー ぴろずぴろず
提出日時 2015-03-22 23:29:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 2,645 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 42,724 KB
最終ジャッジ日時 2024-12-23 00:09:03
合計ジャッジ時間 6,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

package no170;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int[] count = new int[128];
		for(int i=0;i<s.length;i++) {
			count[s[i]]++;
		}
		BigInteger[] fact = new BigInteger[1001];
		fact[0] = BigInteger.ONE;
		for(int i=1;i<=1000;i++) {
			fact[i] = fact[i-1].multiply(BigInteger.valueOf(i));
		}
		BigInteger ans = fact[s.length];
		for(int i=0;i<128;i++) {
			ans = ans.divide(fact[count[i]]);
		}
		System.out.println(ans.subtract(BigInteger.ONE));
	}
}
0