結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | wing3196 |
提出日時 | 2015-03-23 00:03:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 899 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 81,068 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 00:17:10 |
合計ジャッジ時間 | 1,202 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:52:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 52 | printf("%d\n",ans-1); | ~^ ~~~~~ | | | | int ll {aka long long int} | %lld
ソースコード
#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%MOD; 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++){ ans *= int_pow(i,A[i]-B[i])%MOD; ans %= MOD; } printf("%d\n",ans-1); return 0; }