結果

問題 No.170 スワップ文字列(Easy)
ユーザー kenkooookenkoooo
提出日時 2015-03-24 20:03:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-06-02 06:08:59
合計ジャッジ時間 5,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,232 KB
testcase_01 AC 111 ms
41,276 KB
testcase_02 AC 108 ms
41,236 KB
testcase_03 AC 109 ms
41,260 KB
testcase_04 AC 103 ms
40,668 KB
testcase_05 AC 103 ms
40,052 KB
testcase_06 AC 107 ms
41,320 KB
testcase_07 AC 105 ms
41,064 KB
testcase_08 AC 108 ms
41,008 KB
testcase_09 AC 98 ms
40,024 KB
testcase_10 AC 98 ms
40,300 KB
testcase_11 AC 116 ms
40,992 KB
testcase_12 AC 106 ms
41,284 KB
testcase_13 AC 101 ms
40,024 KB
testcase_14 AC 113 ms
41,224 KB
testcase_15 AC 96 ms
40,248 KB
testcase_16 AC 107 ms
41,268 KB
testcase_17 AC 108 ms
41,452 KB
testcase_18 AC 109 ms
41,100 KB
testcase_19 AC 93 ms
40,056 KB
testcase_20 AC 109 ms
41,328 KB
testcase_21 AC 115 ms
41,668 KB
testcase_22 AC 116 ms
40,896 KB
testcase_23 AC 109 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) throws Exception {
		Scanner scanner = new Scanner(System.in);
		char[] input = scanner.next().toCharArray();
		scanner.close();

		int[] alphabets = new int[26];
		for (int i = 0; i < input.length; i++) {
			alphabets[(int) input[i] - 'A']++;
		}
		long ans = 1;
		for (int i = 1; i <= input.length; i++) {
			ans *= i;
		}
		for (int i = 0; i < alphabets.length; i++) {
			for (int j = 1; j <= alphabets[i]; j++) {
				ans /= j;
			}
		}
		System.out.println(ans - 1);

	}
}
0