結果

問題 No.170 スワップ文字列(Easy)
ユーザー scachescache
提出日時 2015-05-26 19:46:36
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 2,975 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 59,148 KB
最終ジャッジ日時 2024-07-06 08:55:13
合計ジャッジ時間 6,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
58,700 KB
testcase_01 WA -
testcase_02 AC 119 ms
58,200 KB
testcase_03 AC 121 ms
58,788 KB
testcase_04 AC 113 ms
57,664 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 120 ms
58,728 KB
testcase_08 AC 118 ms
58,444 KB
testcase_09 AC 126 ms
58,492 KB
testcase_10 WA -
testcase_11 AC 121 ms
58,644 KB
testcase_12 AC 127 ms
57,652 KB
testcase_13 AC 127 ms
58,684 KB
testcase_14 AC 118 ms
58,036 KB
testcase_15 AC 124 ms
58,680 KB
testcase_16 AC 112 ms
57,800 KB
testcase_17 AC 120 ms
58,868 KB
testcase_18 AC 134 ms
59,012 KB
testcase_19 AC 122 ms
59,000 KB
testcase_20 AC 119 ms
58,816 KB
testcase_21 AC 119 ms
58,652 KB
testcase_22 AC 104 ms
57,480 KB
testcase_23 AC 121 ms
58,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main0414 {

	public static  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