結果

問題 No.170 スワップ文字列(Easy)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-25 22:29:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,584 KB
最終ジャッジ日時 2024-06-27 04:59:50
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,360 KB
testcase_01 AC 126 ms
54,340 KB
testcase_02 AC 125 ms
53,964 KB
testcase_03 AC 125 ms
54,236 KB
testcase_04 AC 125 ms
54,128 KB
testcase_05 AC 128 ms
54,272 KB
testcase_06 AC 128 ms
54,324 KB
testcase_07 AC 129 ms
53,868 KB
testcase_08 AC 129 ms
54,432 KB
testcase_09 AC 128 ms
54,564 KB
testcase_10 AC 127 ms
53,984 KB
testcase_11 AC 130 ms
54,260 KB
testcase_12 AC 128 ms
54,084 KB
testcase_13 AC 128 ms
53,896 KB
testcase_14 AC 126 ms
53,888 KB
testcase_15 AC 127 ms
54,584 KB
testcase_16 AC 127 ms
54,184 KB
testcase_17 AC 126 ms
53,988 KB
testcase_18 AC 110 ms
53,024 KB
testcase_19 AC 133 ms
53,728 KB
testcase_20 AC 126 ms
54,096 KB
testcase_21 AC 127 ms
53,856 KB
testcase_22 AC 125 ms
53,864 KB
testcase_23 AC 124 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String N = scan.next();
		scan.close();
		int l = N.length();
		int []c = new int[26];
		for(int i = 0; i < l; i++) {
			char t = N.charAt(i);
			c[t - 65]++;
		}
		int num = fact(l);
		int den = 1;

		for(int i = 0; i < 26; i++) {
			if(c[i] != 0) {
				den *= fact(c[i]);
			}
		}
		System.out.println(num / den - 1);
	}
	static int fact(int n) {
		if(n == 1) {
			return 1;
		}else {
			return n * fact(n - 1);
		}
	}
}
0