結果

問題 No.170 スワップ文字列(Easy)
コンテスト
ユーザー ぴろず
提出日時 2015-03-22 23:29:16
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 616 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,804 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 44,640 KB
最終ジャッジ日時 2026-05-29 02:59:59
合計ジャッジ時間 4,804 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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