結果

問題 No.171 スワップ文字列(Med)
ユーザー nablaenergy_21nablaenergy_21
提出日時 2015-04-25 01:38:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 513 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 24,064 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-07-05 01:37:40
合計ジャッジ時間 980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,504 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,504 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,504 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,504 KB
testcase_12 AC 3 ms
5,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%s",S);
      |         ~~~~~^~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int C[1001][1001];
int main(void){
	char S[1001];
	int i,j,c[26],M,ans;
	
	scanf("%s",S);
	M = strlen(S);


	for(i=0;i<1001;i++){
		C[i][i] = 1;
		C[i][0] = 1;
	}

	for(i=0;i<1001;i++){
		for(j=1;j<i;j++){
			C[i][j] = (C[i-1][j] + C[i-1][j-1]) % 573;
		}
	}

	for(i=0;i<26;i++){
		c[i] = 0;
	}

	for(i=0;i<M;i++){
		c[S[i] - 'A']++;
	}

	ans = 1;
	for(i=0;i<26;i++){
		ans = ans * C[M][c[i]] % 573;
		M = M - c[i];
	}
	ans = (ans - 1 + 573) % 573;

	printf("%d\n",ans);
}
0