結果

問題 No.170 スワップ文字列(Easy)
ユーザー k_kadorak_kadora
提出日時 2015-06-14 19:50:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-06-02 06:18:14
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,100 KB
testcase_01 AC 104 ms
40,964 KB
testcase_02 AC 110 ms
41,412 KB
testcase_03 AC 105 ms
41,252 KB
testcase_04 AC 105 ms
40,716 KB
testcase_05 AC 106 ms
41,280 KB
testcase_06 AC 105 ms
41,256 KB
testcase_07 AC 93 ms
40,116 KB
testcase_08 AC 107 ms
41,096 KB
testcase_09 AC 104 ms
41,372 KB
testcase_10 AC 97 ms
39,972 KB
testcase_11 AC 105 ms
41,248 KB
testcase_12 AC 107 ms
41,516 KB
testcase_13 AC 116 ms
41,228 KB
testcase_14 AC 112 ms
41,148 KB
testcase_15 AC 109 ms
41,232 KB
testcase_16 AC 115 ms
41,208 KB
testcase_17 AC 107 ms
40,868 KB
testcase_18 AC 118 ms
41,248 KB
testcase_19 AC 91 ms
39,716 KB
testcase_20 AC 91 ms
39,760 KB
testcase_21 AC 113 ms
41,528 KB
testcase_22 AC 104 ms
41,200 KB
testcase_23 AC 104 ms
40,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki170{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int[] al = new int[26];
		int b=1,res;
		String s = sc.next();
		for(int i = 0;i<s.length();i++){
			al[s.charAt(i) - 'A']++;
		}
		for(int i = 0;i<26;i++){
			if(al[i] != 0){
				b *= Ban(al[i]);
			}
		}
		res = Ban(s.length())/b - 1;
		System.out.println(res);
	}
	public static int Ban(int n){
		if(n == 1)return 1;
		return n * Ban(n-1);
	}
}
0