結果

問題 No.170 スワップ文字列(Easy)
ユーザー tsunabittsunabit
提出日時 2020-03-10 00:52:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 4,330 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-11-15 20:33:49
合計ジャッジ時間 8,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,732 KB
testcase_01 AC 131 ms
53,976 KB
testcase_02 AC 132 ms
53,860 KB
testcase_03 AC 133 ms
53,852 KB
testcase_04 AC 130 ms
41,264 KB
testcase_05 AC 128 ms
41,088 KB
testcase_06 AC 128 ms
41,288 KB
testcase_07 AC 130 ms
41,460 KB
testcase_08 AC 130 ms
41,104 KB
testcase_09 AC 130 ms
40,980 KB
testcase_10 AC 129 ms
41,268 KB
testcase_11 AC 130 ms
41,132 KB
testcase_12 AC 128 ms
41,388 KB
testcase_13 AC 128 ms
41,500 KB
testcase_14 AC 126 ms
41,292 KB
testcase_15 AC 133 ms
41,316 KB
testcase_16 AC 128 ms
41,104 KB
testcase_17 AC 130 ms
41,308 KB
testcase_18 AC 129 ms
40,948 KB
testcase_19 AC 126 ms
41,108 KB
testcase_20 AC 128 ms
41,280 KB
testcase_21 AC 129 ms
41,120 KB
testcase_22 AC 129 ms
41,168 KB
testcase_23 AC 128 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No170 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		HashMap<Character, Integer> hm = new HashMap<Character, Integer>();
		for(int i = 0; i < s.length(); i++) {
			if(hm.containsKey(s.charAt(i))) hm.put(s.charAt(i), hm.get(s.charAt(i))+1);
			else hm.put(s.charAt(i), 1);
		}
		int w = 1;
		for(int v : hm.values()) w *= kai(v);
		System.out.println(kai(s.length()) / w - 1);
	}
	public static int kai(int n) {
		if(n == 1) return 1;
		else return n * kai(n-1);
	}
}
0