結果

問題 No.171 スワップ文字列(Med)
ユーザー wing3196wing3196
提出日時 2015-03-23 00:08:58
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 964 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 00:17:42
合計ジャッジ時間 1,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:55:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
   55 |         printf("%d\n",(ans+MOD-1)%MOD);
      |                 ~^
      |                  |
      |                  int
      |                 %lld

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<climits>
#include<string>
#include<vector>
#include<list>
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<cstring>
#include<stack>
#include<functional>
using namespace std;
typedef long long ll;
#define MOD 573

int int_pow(int n,int m){
	int ans = 1;
	while(m--){
		ans *= n;
		if(ans%MOD!=0) ans %= MOD;
	}
	return ans;
}

void latte(int A[1001],int n){
	for(int i=2;n!=1;i++){
		while(n%i==0){
			A[i]++;
			n /= i;
		}
	}
}

int main(){
	string S;
	int cnt[26] = {}, A[1001] = {}, B[1001] = {};
	cin>>S;
	for(int i=0;i<S.size();i++) cnt[S[i]-'A']++;
	for(int i=S.size();i>1;i--) latte(A,i);
	for(int i=0;i<26;i++){
		for(int j=2;j<=cnt[i];j++){
			latte(B,j);
		}
	}
	ll ans = 1;
	for(int i=2;i<=S.size();i++){
		if(A[i]-B[i]==0) continue;
		ans *= int_pow(i,A[i]-B[i]);
		if(ans%MOD!=0) ans %= MOD;
	}
	printf("%d\n",(ans+MOD-1)%MOD);
	return 0;
}
0