結果

問題 No.170 スワップ文字列(Easy)
ユーザー k_kadorak_kadora
提出日時 2015-06-14 19:50:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-12-23 00:30:26
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,256 KB
testcase_01 AC 132 ms
41,344 KB
testcase_02 AC 118 ms
40,120 KB
testcase_03 AC 126 ms
41,528 KB
testcase_04 AC 127 ms
41,292 KB
testcase_05 AC 114 ms
39,984 KB
testcase_06 AC 127 ms
40,984 KB
testcase_07 AC 120 ms
41,472 KB
testcase_08 AC 127 ms
41,640 KB
testcase_09 AC 128 ms
41,264 KB
testcase_10 AC 117 ms
40,128 KB
testcase_11 AC 131 ms
41,284 KB
testcase_12 AC 131 ms
41,628 KB
testcase_13 AC 131 ms
41,132 KB
testcase_14 AC 130 ms
41,200 KB
testcase_15 AC 115 ms
40,272 KB
testcase_16 AC 126 ms
41,228 KB
testcase_17 AC 129 ms
41,128 KB
testcase_18 AC 131 ms
41,392 KB
testcase_19 AC 130 ms
41,296 KB
testcase_20 AC 128 ms
41,252 KB
testcase_21 AC 127 ms
41,512 KB
testcase_22 AC 129 ms
41,072 KB
testcase_23 AC 127 ms
41,192 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