結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | ぴろず |
提出日時 | 2015-03-22 23:28:47 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 167 ms / 1,000 ms |
コード長 | 651 bytes |
コンパイル時間 | 2,152 ms |
コンパイル使用メモリ | 74,520 KB |
実行使用メモリ | 42,564 KB |
最終ジャッジ日時 | 2024-06-29 00:11:13 |
合計ジャッジ時間 | 4,832 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
package no171; 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).remainder(BigInteger.valueOf(573))); } }