結果
問題 | No.1627 三角形の成立 |
ユーザー | sak |
提出日時 | 2021-07-16 19:42:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,413 bytes |
コンパイル時間 | 2,122 ms |
コンパイル使用メモリ | 205,956 KB |
実行使用メモリ | 162,688 KB |
最終ジャッジ日時 | 2024-07-18 16:40:56 |
合計ジャッジ時間 | 12,561 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 397 ms
162,688 KB |
testcase_03 | WA | - |
testcase_04 | AC | 385 ms
162,560 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> p_ll; template<class T> void debug(T itr1, T itr2) { auto now = itr1; while(now<itr2) { cout << *now << " "; now++; } cout << endl; } #define repr(i,from,to) for (ll i=(ll)from; i<(ll)to; i++) #define all(vec) vec.begin(), vec.end() #define rep(i,N) repr(i,0,N) #define per(i,N) for (ll i=(ll)N-1; i>=0; i--) #define popcount __builtin_popcount const ll LLINF = pow(2,61)-1; const ll INF = pow(2,30)-1; ll gcd(ll a, ll b) { if (a<b) swap(a,b); return b==0 ? a : gcd(b, a%b); } ll lcm(ll a, ll b) { return a/gcd(a,b)*b; } // ---------------------------------------------------------------------- // ---------------------------------------------------------------------- const ll MOD = pow(10,9)+7; struct MLL { ll x, mod; MLL(ll y=0, ll m=MOD) { x = y; mod = m; } MLL &operator+= (const MLL &p) { x = (x+p.x)%mod; return *this; } MLL &operator-= (const MLL &p) { x = (x-p.x+mod)%mod; return *this; } MLL &operator*= (const MLL &p) { x = (x*p.x)%mod; return *this; } MLL &operator/= (const MLL &p) { x = (x*p.inv().x)%mod; return *this; } MLL operator+ (const MLL &p) const { return MLL(*this)+=p; } MLL operator- (const MLL &p) const { return MLL(*this)-=p; } MLL operator* (const MLL &p) const { return MLL(*this)*=p; } MLL operator/ (const MLL &p) const { return MLL(*this)/=p; } bool operator== (const MLL &p) const { return x==p.x; } bool operator!= (const MLL &p) const { return x!=p.x; } bool operator< (const MLL &p) const { return x< p.x; } bool operator<= (const MLL &p) const { return x<=p.x; } bool operator> (const MLL &p) const { return x> p.x; } bool operator>= (const MLL &p) const { return x>=p.x; } MLL pow(MLL n) const { MLL result(1), p(x); ll tn = n.x; while(tn){ if (tn&1) result*=p; p*=p; tn>>=1; } return result; } MLL inv() const { return pow(MOD-2); } }; MLL operator+ (ll x, MLL p) { return (MLL)x+p; } MLL operator- (ll x, MLL p) { return (MLL)x-p; } MLL operator* (ll x, MLL p) { return (MLL)x*p; } MLL operator/ (ll x, MLL p) { return (MLL)x/p; } vector<MLL> fac; void c_fac(ll x=pow(10,7)+10) { fac.resize(x); rep(i,x) fac[i] = i ? fac[i-1]*i : 1; } MLL nck(MLL n, MLL k) { return fac[n.x]/(fac[k.x]*fac[(n-k).x]); }; ostream &operator<< (ostream &ost, const MLL &p) { return ost << p.x; } istream &operator>> (istream &ist, MLL &p) { return ist >> p.x; } // ---------------------------------------------------------------------- // ---------------------------------------------------------------------- ll MA = 2*pow(10,5)+10; int main() { c_fac(); MLL n, m; cin >> n >> m; MLL cnt[MA] = {}; cnt[0] = n*m; repr(i,1,MA) { MLL cn = (n.x/i+1) * (2*n-i*(n.x/i)) / 2; MLL cm = (m.x/i+1) * (2*m-i*(m.x/i)) / 2; cnt[i] = cn*cm - n*m; } // debug(cnt,cnt+10); for (ll i=MA-1; i>0; i--) for (ll j=2; i*j<MA; j++) cnt[i] -= cnt[i*j]; // debug(cnt,cnt+10); MLL result = nck(n+2,3)*nck(m+2,3) - 2*nck(n+1,2)*nck(m+1,2) + n*m; repr(i,1,MA) result -= cnt[i]*(i-1); cout << result << endl; // // 愚直解法 // ll tr = 0; // repr(x1,1,n.x+1) repr(y1,1,m.x+1) { // repr(x2,x1,n.x+1) repr(y2,y1,m.x+1) { // repr(x3,x2,n.x+1) repr(y3,y2,m.x+1) { // ll S = (x2-x1)*(y3-y1)-(y2-y1)*(x3-x1); // if (S) tr++; // } // } // } // cout << tr << endl; return 0; }