結果

問題 No.170 スワップ文字列(Easy)
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-19 12:34:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 77,016 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-17 05:05:55
合計ジャッジ時間 6,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,036 KB
testcase_01 AC 120 ms
41,044 KB
testcase_02 AC 106 ms
39,896 KB
testcase_03 AC 121 ms
41,164 KB
testcase_04 AC 119 ms
41,268 KB
testcase_05 AC 118 ms
41,028 KB
testcase_06 AC 104 ms
39,656 KB
testcase_07 AC 120 ms
41,172 KB
testcase_08 AC 120 ms
41,024 KB
testcase_09 AC 119 ms
41,012 KB
testcase_10 AC 115 ms
41,264 KB
testcase_11 AC 121 ms
40,836 KB
testcase_12 AC 115 ms
41,168 KB
testcase_13 AC 99 ms
39,936 KB
testcase_14 AC 100 ms
39,660 KB
testcase_15 AC 112 ms
41,164 KB
testcase_16 AC 99 ms
39,732 KB
testcase_17 AC 113 ms
40,544 KB
testcase_18 AC 124 ms
41,472 KB
testcase_19 AC 118 ms
41,404 KB
testcase_20 AC 118 ms
41,432 KB
testcase_21 AC 117 ms
41,312 KB
testcase_22 AC 115 ms
41,176 KB
testcase_23 AC 118 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		String s=scanner.next();
		Map<String ,Integer>map=new HashMap<>();
		for(int i=0;i<s.length();i++){
			String key=s.substring(i, i+1);
			if (map.containsKey(key)) {
				map.put(key, map.get(key) + 1);
			} else {
				map.put(key, 1);
			}
		}
		long ans=kaijo(s.length());
		for(int val:map.values()){
			ans/=kaijo(val);
		}
		System.out.println(ans-1);
	
	}
	
	static long kaijo(int n){
		long s = 1;
		for (int i = 1; i <= n; i++)
			s *= i;
			return s;
	}
}

0