結果

問題 No.171 スワップ文字列(Med)
ユーザー scachescache
提出日時 2015-05-26 19:37:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 680 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 47,880 KB
最終ジャッジ日時 2024-07-06 08:51:26
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
47,676 KB
testcase_01 AC 101 ms
46,980 KB
testcase_02 AC 112 ms
47,408 KB
testcase_03 AC 112 ms
47,876 KB
testcase_04 AC 104 ms
47,180 KB
testcase_05 AC 114 ms
47,732 KB
testcase_06 AC 114 ms
47,512 KB
testcase_07 AC 112 ms
47,748 KB
testcase_08 AC 115 ms
47,880 KB
testcase_09 AC 104 ms
46,944 KB
testcase_10 AC 112 ms
47,732 KB
testcase_11 AC 102 ms
47,224 KB
testcase_12 AC 108 ms
47,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main0414 {

	public static final void main(String[] args) {
		new Main0414();
	}

	public Main0414() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();	
		System.out.println(solve(s));
	}

	int[][] dp;
	private int solve(String s) {
		dp = new int[1001][1001];
		for(int i=0;i<1001;i++){
			dp[i][0] = 1;
			for(int j=1;j<=i;j++)
				dp[i][j] = (dp[i-1][j] + dp[i-1][j-1]) % 573; 
		}
		
		int[] count = new int[26];
		for(char c : s.toCharArray())
			count[c-'A']++;
		
		int res = 1;
		int ct = s.length();
		for(int c : count){
			res = (res*dp[ct][c])%573;
			ct -= c;
		}
		
		res = (res+573-1)%573;
		return res;
	}
}
0