結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | Lay_ec |
提出日時 | 2015-03-23 00:13:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 166 ms / 1,000 ms |
コード長 | 691 bytes |
コンパイル時間 | 3,660 ms |
コンパイル使用メモリ | 77,500 KB |
実行使用メモリ | 43,748 KB |
最終ジャッジ日時 | 2024-06-29 00:18:34 |
合計ジャッジ時間 | 5,967 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,316 KB |
testcase_01 | AC | 126 ms
40,888 KB |
testcase_02 | AC | 163 ms
42,264 KB |
testcase_03 | AC | 129 ms
41,256 KB |
testcase_04 | AC | 129 ms
41,248 KB |
testcase_05 | AC | 141 ms
41,504 KB |
testcase_06 | AC | 165 ms
42,520 KB |
testcase_07 | AC | 166 ms
43,748 KB |
testcase_08 | AC | 150 ms
43,120 KB |
testcase_09 | AC | 155 ms
43,464 KB |
testcase_10 | AC | 125 ms
41,132 KB |
testcase_11 | AC | 125 ms
41,276 KB |
testcase_12 | AC | 127 ms
41,188 KB |
ソースコード
import java.math.*; import java.util.*; public class yuki170 { public static void main (String[] argv){ Scanner sc = new Scanner(System.in); String s = sc.next(); int num[]=new int[26]; for(int i=0;i<26;i++) num[i]=0; for(int i=0;i<s.length();i++){ num[s.charAt(i)-'A']++; } BigInteger div = BigInteger.ONE; for(int i=0;i<26;i++){ for(int j=num[i];j>0;j--) div=div.multiply(new BigInteger(String.valueOf(j))); } BigInteger res = BigInteger.ONE; for(int j=s.length();j>0;j--) res=res.multiply(new BigInteger(String.valueOf(j))); res=res.divide(div); res=res.subtract(BigInteger.ONE); res=res.mod(new BigInteger("573")); System.out.println(res); } }