結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | kou6839 |
提出日時 | 2015-03-22 23:50:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 158 ms / 1,000 ms |
コード長 | 639 bytes |
コンパイル時間 | 1,978 ms |
コンパイル使用メモリ | 77,988 KB |
実行使用メモリ | 42,992 KB |
最終ジャッジ日時 | 2024-06-29 00:15:58 |
合計ジャッジ時間 | 4,220 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
41,404 KB |
testcase_01 | AC | 100 ms
41,052 KB |
testcase_02 | AC | 125 ms
41,996 KB |
testcase_03 | AC | 102 ms
41,404 KB |
testcase_04 | AC | 117 ms
41,164 KB |
testcase_05 | AC | 132 ms
42,012 KB |
testcase_06 | AC | 151 ms
42,072 KB |
testcase_07 | AC | 155 ms
41,700 KB |
testcase_08 | AC | 152 ms
42,844 KB |
testcase_09 | AC | 158 ms
42,992 KB |
testcase_10 | AC | 98 ms
41,516 KB |
testcase_11 | AC | 110 ms
41,036 KB |
testcase_12 | AC | 99 ms
41,260 KB |
ソースコード
import java.math.BigInteger; import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String a = sc.next(); HashMap<Character, Integer> set = new HashMap<>(); BigInteger ans = new BigInteger("1"); for(int i=0;i<a.length();i++){ if(set.get(a.charAt(i))==null) { set.put(a.charAt(i),0); } set.put(a.charAt(i),set.get(a.charAt(i))+1); ans=ans.multiply(new BigInteger(i+1+"")); ans=ans.divide(new BigInteger(set.get(a.charAt(i))+"")); } ans=ans.subtract(new BigInteger("1")); ans=ans.mod(new BigInteger("573")); System.out.println(ans); } }