結果

問題 No.170 スワップ文字列(Easy)
ユーザー kuramukuramu
提出日時 2016-01-28 23:06:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 1,338 bytes
コンパイル時間 2,429 ms
コンパイル使用メモリ 78,616 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-12-23 00:35:00
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,528 KB
testcase_01 AC 55 ms
37,132 KB
testcase_02 AC 54 ms
37,040 KB
testcase_03 AC 56 ms
36,764 KB
testcase_04 AC 54 ms
37,016 KB
testcase_05 AC 54 ms
37,032 KB
testcase_06 AC 55 ms
36,776 KB
testcase_07 AC 53 ms
37,016 KB
testcase_08 AC 56 ms
36,652 KB
testcase_09 AC 55 ms
37,056 KB
testcase_10 AC 56 ms
37,068 KB
testcase_11 AC 55 ms
37,316 KB
testcase_12 AC 55 ms
36,980 KB
testcase_13 AC 54 ms
37,024 KB
testcase_14 AC 56 ms
37,176 KB
testcase_15 AC 53 ms
36,672 KB
testcase_16 AC 57 ms
36,828 KB
testcase_17 AC 54 ms
36,888 KB
testcase_18 AC 54 ms
36,884 KB
testcase_19 AC 55 ms
36,832 KB
testcase_20 AC 54 ms
36,648 KB
testcase_21 AC 54 ms
37,136 KB
testcase_22 AC 54 ms
37,036 KB
testcase_23 AC 55 ms
37,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String line = stdReader.readLine();
	    	  HashMap<Character, Integer> hashMap = new HashMap<>();
	    	  ArrayList<Character> charList = new ArrayList<>();
	    	  for(int i=0;i<line.length();i++){
	    		  if(!hashMap.containsKey(line.charAt(i))){
	    			  hashMap.put(line.charAt(i), 1);
	    			  charList.add(line.charAt(i));
	    		  }else{
	    			  int num = hashMap.get(line.charAt(i));
	    			  hashMap.remove(line.charAt(i));
	    			  hashMap.put(line.charAt(i), num+1);
	    		  }
	    	  }
	    	  
	    	  int ans = 1;
	    	  int n = line.length();
	    	  for(int i=0;i<charList.size();i++){
	    		  ans *= comb(n, hashMap.get(charList.get(i)));
	    		  n -= hashMap.get(charList.get(i));
	    	  }
	    	  
	    	  System.out.println(ans-1);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}

	
	public static int comb(int n,int r){
		int temp1 = 1;
		int temp2 = 1;
		int loop = r;
		for(int i=0;i<loop;i++){
			temp1 *= n--;
			temp2 *= r--;
		}
		return temp1/temp2;
		
	}
}
0