結果
問題 | No.2952 Invision of Multiples |
ユーザー | nouka28 |
提出日時 | 2024-06-02 15:20:03 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 5,461 ms |
コンパイル使用メモリ | 311,804 KB |
実行使用メモリ | 11,552 KB |
最終ジャッジ日時 | 2024-09-13 16:03:38 |
合計ジャッジ時間 | 23,867 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
6,816 KB |
testcase_01 | AC | 36 ms
6,812 KB |
testcase_02 | AC | 78 ms
6,940 KB |
testcase_03 | AC | 127 ms
6,940 KB |
testcase_04 | AC | 142 ms
6,944 KB |
testcase_05 | AC | 3,808 ms
6,940 KB |
testcase_06 | AC | 3,821 ms
6,944 KB |
testcase_07 | AC | 46 ms
6,944 KB |
testcase_08 | AC | 37 ms
6,940 KB |
testcase_09 | AC | 286 ms
6,940 KB |
testcase_10 | AC | 305 ms
6,940 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using mint=atcoder::modint998244353; const int B=0; const int M=100000; mint sum[B+1],sum2[B+1]; // n>d_i mint floor_sums[M+1][B+1]; // d_i>n mint floor_sums2[M+1][B+1]; int main(){ cin.tie(nullptr),ios_base::sync_with_stdio(false); int n,m;cin>>n>>m; vector<int> a(n);for(auto&e:a)cin>>e; mint X=1;for(auto&e:a)X*=m/e; for(int i=1;i<=M;i++){ for(int j=1;j<=B;j++){ floor_sums[i][j]=floor_sum(m/j,i,j,j-1); floor_sums2[i][j]=floor_sum(m/i,j,i,i-1); } } mint ans=0; fenwick_tree<mint> f(M+1); for(auto&e:a){ if(e<=B){ ans+=sum2[e]; for(int i=1;i<=B;i++){ ans+=sum[i]*floor_sums[e][i]/(m/e); } sum[e]+=X/(m/e); }else{ for(int i=1;i<=B;i++){ ans+=sum[i]*floor_sums[e][i]/(m/e); } for(int i=e;i<=m;i+=e){ ans+=f.sum(i+1,m+1)/(m/e); } for(int i=1;i<=B;i++){ sum2[i]+=X/(m/e)/(m/i)*floor_sums2[e][i]; } for(int i=e;i<=M;i+=e){ f.add(i,X/(m/e)); } } } cout<<ans.val()<<endl; }