結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | kzyKT |
提出日時 | 2015-03-23 00:04:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 173 ms / 1,000 ms |
コード長 | 833 bytes |
コンパイル時間 | 2,978 ms |
コンパイル使用メモリ | 77,236 KB |
実行使用メモリ | 43,084 KB |
最終ジャッジ日時 | 2024-06-29 00:17:39 |
合計ジャッジ時間 | 4,882 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
40,972 KB |
testcase_01 | AC | 112 ms
39,976 KB |
testcase_02 | AC | 161 ms
42,264 KB |
testcase_03 | AC | 126 ms
41,360 KB |
testcase_04 | AC | 130 ms
41,232 KB |
testcase_05 | AC | 146 ms
41,568 KB |
testcase_06 | AC | 164 ms
42,476 KB |
testcase_07 | AC | 163 ms
43,084 KB |
testcase_08 | AC | 148 ms
42,824 KB |
testcase_09 | AC | 173 ms
43,044 KB |
testcase_10 | AC | 112 ms
40,200 KB |
testcase_11 | AC | 117 ms
40,156 KB |
testcase_12 | AC | 127 ms
41,072 KB |
ソースコード
import java.io.*; import java.lang.*; import java.util.*; import java.math.*; public class Main { static Scanner cin = new Scanner(System.in); public static void main(String[] args) { String s=cin.next(); BigInteger a=BigInteger.ONE; for(int i=1; i<=s.length(); i++) { BigInteger b = new BigInteger(String.valueOf(i)); a=a.multiply(b); } int[] c = new int[26]; for(int i=0; i<s.length(); i++) { char ch=s.charAt(i); int t=Character.getNumericValue(ch); c[t-10]++; } for(int i=0; i<26; i++) { BigInteger d=BigInteger.ONE; for(int j=0; j<c[i]; j++) { BigInteger b = new BigInteger(String.valueOf(j+1)); d=d.multiply(b); } a=a.divide(d); } a=a.subtract(BigInteger.ONE); BigInteger mod = new BigInteger(String.valueOf(573)); System.out.println(a.mod(mod)); } }