結果
問題 | No.2045 Two Reflections |
ユーザー | okkuukenken |
提出日時 | 2022-08-19 22:15:14 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 154,036 KB |
実行使用メモリ | 5,504 KB |
最終ジャッジ日時 | 2024-10-08 09:04:23 |
合計ジャッジ時間 | 2,815 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 8 ms
5,248 KB |
testcase_22 | AC | 9 ms
5,248 KB |
testcase_23 | AC | 5 ms
5,248 KB |
testcase_24 | AC | 3 ms
5,248 KB |
testcase_25 | AC | 8 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 15 ms
5,504 KB |
testcase_28 | AC | 4 ms
5,248 KB |
testcase_29 | AC | 4 ms
5,248 KB |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<numeric> #include<queue> #include<deque> #include<stack> #include<set> #include<map> #include<random> #include<bitset> #include<cassert> #include<complex> #include<fstream> #include<cstdlib> #include<functional> using namespace std; typedef long long ll; const int mod=998244353; const int dx[]={1,0,0,-1},dy[]={0,1,-1,0}; ll mypow(int x,ll n){ if(n==0) return 1; if(n%2==1) return mypow(x,n-1)*x%mod; ll res=mypow(x,n/2); return res*res%mod; } int arr[100000]; bool used[100000]; int main(){ int n,p,q; cin>>n>>p>>q; iota(arr,arr+n,0); reverse(arr,arr+p); reverse(arr+n-q,arr+n); map<int,int>fact; for(int i=0;i<n;i++){ if(used[i]) continue; int cnt=0; for(int j=i;!used[j];j=arr[j],cnt++) used[j]=1; for(int j=2;j<=cnt;j++){ int tmp=0; while(cnt%j==0){ tmp++; cnt/=j; } fact[j]=max(fact[j],tmp); } } int ans=1; for(auto x:fact) ans=ans*mypow(x.first,x.second)%mod; cout<<ans*2%mod<<endl; }