結果
問題 | No.1670 Many Gacha |
ユーザー | HIcoder |
提出日時 | 2023-07-05 15:45:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 1,059 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 106,192 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-07-19 09:54:46 |
合計ジャッジ時間 | 5,941 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 165 ms
16,512 KB |
testcase_09 | AC | 172 ms
16,896 KB |
testcase_10 | AC | 170 ms
16,768 KB |
testcase_11 | AC | 32 ms
5,760 KB |
testcase_12 | AC | 33 ms
6,016 KB |
testcase_13 | AC | 30 ms
5,760 KB |
testcase_14 | AC | 126 ms
13,184 KB |
testcase_15 | AC | 96 ms
10,752 KB |
testcase_16 | AC | 115 ms
12,416 KB |
testcase_17 | AC | 54 ms
7,552 KB |
testcase_18 | AC | 97 ms
11,008 KB |
testcase_19 | AC | 58 ms
7,808 KB |
testcase_20 | AC | 151 ms
15,104 KB |
testcase_21 | AC | 106 ms
11,648 KB |
testcase_22 | AC | 107 ms
11,776 KB |
testcase_23 | AC | 147 ms
14,848 KB |
testcase_24 | AC | 78 ms
9,856 KB |
testcase_25 | AC | 117 ms
12,544 KB |
testcase_26 | AC | 59 ms
7,936 KB |
testcase_27 | AC | 56 ms
7,680 KB |
testcase_28 | AC | 49 ms
7,168 KB |
testcase_29 | AC | 106 ms
11,776 KB |
testcase_30 | AC | 65 ms
8,448 KB |
testcase_31 | AC | 79 ms
9,600 KB |
testcase_32 | AC | 61 ms
8,192 KB |
testcase_33 | AC | 159 ms
15,872 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 37 ms
6,528 KB |
testcase_36 | AC | 179 ms
17,280 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; ll mod_pow(ll x,ll y,ll mod){ ll res=1; while(y>0){ if(y&1){ res*=x; res%=mod; } x*=x; x%=mod; y/=2; } return res; } int main(){ int N,M; cin>>N>>M; vector<ll> A(M+1),Ap(N+1,INF); for(int i=1;i<=M;i++){ cin>>A[i]; } multiset<ll> mst; for(int i=M;i>=1;i--){ mst.insert(A[i]); } for(int i=1;i<=N;i++){ auto it=mst.lower_bound(i);//i以上となる最小の値 Ap[i]=*it; } vector<ll> p(N+1,0); ll ans=0; for(int i=N;i>=1;i--){ ll inv=mod_pow(N-i+1,MOD-2,MOD); p[i]=inv; } for(int i=N;i>=1;i--){ ans+=p[i]*Ap[i]%MOD; ans%=MOD; } cout<<ans<<endl; }