結果
問題 | No.886 Direct |
ユーザー | beet |
提出日時 | 2019-09-14 07:57:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,306 ms / 4,000 ms |
コード長 | 2,067 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 201,268 KB |
実行使用メモリ | 26,960 KB |
最終ジャッジ日時 | 2024-07-05 07:04:04 |
合計ジャッジ時間 | 31,515 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 699 ms
26,880 KB |
testcase_01 | AC | 709 ms
26,880 KB |
testcase_02 | AC | 697 ms
26,832 KB |
testcase_03 | AC | 701 ms
26,880 KB |
testcase_04 | AC | 716 ms
26,880 KB |
testcase_05 | AC | 707 ms
26,880 KB |
testcase_06 | AC | 692 ms
26,880 KB |
testcase_07 | AC | 706 ms
26,880 KB |
testcase_08 | AC | 688 ms
26,880 KB |
testcase_09 | AC | 702 ms
26,960 KB |
testcase_10 | AC | 693 ms
26,752 KB |
testcase_11 | AC | 694 ms
26,880 KB |
testcase_12 | AC | 701 ms
26,960 KB |
testcase_13 | AC | 715 ms
26,752 KB |
testcase_14 | AC | 761 ms
26,752 KB |
testcase_15 | AC | 756 ms
26,880 KB |
testcase_16 | AC | 752 ms
26,880 KB |
testcase_17 | AC | 748 ms
26,880 KB |
testcase_18 | AC | 763 ms
26,832 KB |
testcase_19 | AC | 778 ms
26,880 KB |
testcase_20 | AC | 874 ms
26,880 KB |
testcase_21 | AC | 1,040 ms
26,880 KB |
testcase_22 | AC | 984 ms
26,752 KB |
testcase_23 | AC | 961 ms
26,880 KB |
testcase_24 | AC | 1,306 ms
26,880 KB |
testcase_25 | AC | 938 ms
26,752 KB |
testcase_26 | AC | 863 ms
26,832 KB |
testcase_27 | AC | 763 ms
26,880 KB |
testcase_28 | AC | 732 ms
26,752 KB |
testcase_29 | AC | 749 ms
26,956 KB |
testcase_30 | AC | 768 ms
26,836 KB |
testcase_31 | AC | 785 ms
26,880 KB |
testcase_32 | AC | 742 ms
26,752 KB |
testcase_33 | AC | 758 ms
26,880 KB |
testcase_34 | AC | 737 ms
26,828 KB |
testcase_35 | AC | 755 ms
26,880 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T,T MOD = 1000000007> struct Mint{ static constexpr T mod = MOD; T v; Mint():v(0){} Mint(signed v):v(v){} Mint(long long t){v=t%MOD;if(v<0) v+=MOD;} Mint pow(long long k){ Mint res(1),tmp(v); while(k){ if(k&1) res*=tmp; tmp*=tmp; k>>=1; } return res; } static Mint add_identity(){return Mint(0);} static Mint mul_identity(){return Mint(1);} Mint inv(){return pow(MOD-2);} Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;} Mint& operator/=(Mint a){return (*this)*=a.inv();} Mint operator+(Mint a) const{return Mint(v)+=a;}; Mint operator-(Mint a) const{return Mint(v)-=a;}; Mint operator*(Mint a) const{return Mint(v)*=a;}; Mint operator/(Mint a) const{return Mint(v)/=a;}; Mint operator-() const{return v?Mint(MOD-v):Mint(v);} bool operator==(const Mint a)const{return v==a.v;} bool operator!=(const Mint a)const{return v!=a.v;} bool operator <(const Mint a)const{return v <a.v;} }; template<typename T,T MOD> constexpr T Mint<T, MOD>::mod; template<typename T,T MOD> ostream& operator<<(ostream &os,Mint<T, MOD> m){os<<m.v;return os;} //INSERT ABOVE HERE const int MAX = 3e6+100; using M = Mint<int>; M ys[MAX]={},xs[MAX]={}; signed main(){ int h,w; cin>>h>>w; for(int i=1;i<h;i++) ys[i]=h-i; for(int j=1;j<w;j++) xs[j]=w-j; for(int i=1;i<MAX;i++){ for(int j=i+i;j<MAX;j+=i){ ys[i]+=ys[j]; xs[i]+=xs[j]; } } for(int i=0;i<MAX;i++) ys[i]*=xs[i]; for(int i=MAX-1;i>=1;i--){ for(int j=i+i;j<MAX;j+=i){ ys[i]-=ys[j]; xs[i]-=xs[j]; } } M ans{0}; ans+=ys[1]*M(2); ans+=M(h-1)*M(w); ans+=M(h)*M(w-1); cout<<ans<<endl; return 0; }