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