結果

問題 No.170 スワップ文字列(Easy)
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 15:22:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-07-07 04:42:09
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
54,016 KB
testcase_01 AC 106 ms
53,936 KB
testcase_02 AC 104 ms
53,796 KB
testcase_03 AC 103 ms
53,852 KB
testcase_04 AC 97 ms
52,908 KB
testcase_05 AC 95 ms
52,700 KB
testcase_06 AC 92 ms
52,704 KB
testcase_07 AC 105 ms
54,024 KB
testcase_08 AC 93 ms
53,088 KB
testcase_09 AC 96 ms
53,516 KB
testcase_10 AC 103 ms
54,148 KB
testcase_11 AC 92 ms
52,820 KB
testcase_12 AC 96 ms
53,352 KB
testcase_13 AC 103 ms
53,744 KB
testcase_14 AC 89 ms
52,312 KB
testcase_15 AC 106 ms
54,176 KB
testcase_16 AC 102 ms
53,816 KB
testcase_17 AC 103 ms
53,924 KB
testcase_18 AC 105 ms
53,704 KB
testcase_19 AC 106 ms
53,972 KB
testcase_20 AC 103 ms
53,848 KB
testcase_21 AC 104 ms
54,036 KB
testcase_22 AC 107 ms
53,908 KB
testcase_23 AC 102 ms
53,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeMap;

public class Swapstring {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder S = new StringBuilder(s.nextLine());
		s.close();
		TreeMap<Character,Integer> str = new TreeMap<>();
		for(int i = 0;i < S.length();i++){
			char c = S.charAt(i);
			if(str.containsKey(c)){
				str.put(c, str.get(c)+1);
			}else{
				str.put(c, 1);
			}
		}
		int p = 1;
		while(str.size() != 0){
			char k = str.firstKey();
			p *= seki(str.get(k));
			str.remove(k);
		}
		int all = seki(S.length());
		System.out.println(all/p - 1);

	}
	static int seki(int k){
		int p = 1;
		for(int i = 1;i <= k;i++){
			p *= i;
		}
		return p;
	}

}
0