結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | ki_ki33 |
提出日時 | 2015-03-22 23:39:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 147 ms / 1,000 ms |
コード長 | 1,368 bytes |
コンパイル時間 | 1,978 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 43,652 KB |
最終ジャッジ日時 | 2024-06-29 00:13:57 |
合計ジャッジ時間 | 4,176 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
41,736 KB |
testcase_01 | AC | 110 ms
41,216 KB |
testcase_02 | AC | 142 ms
42,488 KB |
testcase_03 | AC | 108 ms
40,176 KB |
testcase_04 | AC | 110 ms
41,420 KB |
testcase_05 | AC | 111 ms
41,680 KB |
testcase_06 | AC | 145 ms
42,888 KB |
testcase_07 | AC | 147 ms
43,652 KB |
testcase_08 | AC | 147 ms
43,272 KB |
testcase_09 | AC | 129 ms
43,220 KB |
testcase_10 | AC | 112 ms
41,600 KB |
testcase_11 | AC | 107 ms
41,216 KB |
testcase_12 | AC | 111 ms
41,336 KB |
ソースコード
import java.awt.Point; import java.awt.Rectangle; import java.awt.geom.Rectangle2D; import java.io.BufferedInputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; import java.util.Map.Entry; import java.util.concurrent.ConcurrentSkipListSet; public class Main { public static final int C = 1000000007; static final int CY = 1000000000; //static boolean MAP[][]; static int K; static int B; static int[][] POS; static String S; static int X[][]; static int HA[]; static long DP[]; static int ST[][]; static ConcurrentSkipListSet<Integer> TS; static ArrayList<Integer> AL; public static void main(String[] args) { StringBuilder sb = new StringBuilder(); BufferedInputStream bs = new BufferedInputStream(System.in); Scanner sc = new Scanner(bs); S = sc.next(); BigInteger ans = new BigInteger("1"); int[] a = new int[26]; for (int i=0; i < S.length(); i++) { char c = S.charAt(i); a[c - 'A']++; } ans = msd(S.length()); for (int i=0; i< 26; i++) { ans = ans.divide(msd(a[i])); } System.out.println(ans.add(new BigInteger("-1")).mod(new BigInteger("573"))); } static BigInteger msd(int num) { BigInteger ret = new BigInteger("1"); for (int i=1; i <= num; i++) { ret = ret.multiply(new BigInteger("" + i)); } return ret; } }