結果
問題 | No.1019 最小格子三角形 |
ユーザー | beet |
提出日時 | 2020-03-30 09:57:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 544 ms / 2,000 ms |
コード長 | 2,870 bytes |
コンパイル時間 | 2,042 ms |
コンパイル使用メモリ | 203,636 KB |
実行使用メモリ | 58,880 KB |
最終ジャッジ日時 | 2024-06-11 14:57:43 |
合計ジャッジ時間 | 15,768 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 374 ms
58,820 KB |
testcase_01 | AC | 372 ms
58,752 KB |
testcase_02 | AC | 374 ms
58,720 KB |
testcase_03 | AC | 364 ms
58,752 KB |
testcase_04 | AC | 355 ms
58,756 KB |
testcase_05 | AC | 361 ms
58,752 KB |
testcase_06 | AC | 359 ms
58,764 KB |
testcase_07 | AC | 366 ms
58,712 KB |
testcase_08 | AC | 383 ms
58,728 KB |
testcase_09 | AC | 364 ms
58,744 KB |
testcase_10 | AC | 356 ms
58,700 KB |
testcase_11 | AC | 359 ms
58,880 KB |
testcase_12 | AC | 359 ms
58,820 KB |
testcase_13 | AC | 467 ms
58,732 KB |
testcase_14 | AC | 526 ms
58,760 KB |
testcase_15 | AC | 500 ms
58,724 KB |
testcase_16 | AC | 483 ms
58,864 KB |
testcase_17 | AC | 515 ms
58,624 KB |
testcase_18 | AC | 488 ms
58,696 KB |
testcase_19 | AC | 501 ms
58,792 KB |
testcase_20 | AC | 485 ms
58,696 KB |
testcase_21 | AC | 480 ms
58,752 KB |
testcase_22 | AC | 544 ms
58,688 KB |
testcase_23 | AC | 544 ms
58,752 KB |
testcase_24 | AC | 517 ms
58,724 KB |
testcase_25 | AC | 506 ms
58,880 KB |
testcase_26 | AC | 518 ms
58,776 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; 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;} using Int = long long; const char newl = '\n'; 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;} static Mint comb(long long n,int k){ Mint num(1),dom(1); for(int i=0;i<k;i++){ num*=Mint(n-i); dom*=Mint(i+1); } return num/dom; } }; 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 = 1e6 + 10; vector<int> dp[MAX]; using ll = long long; ll naive(ll n){ ll ans=0; for(ll p1=-n;p1<=n;p1++){ for(ll p2=-n;p2<=n;p2++){ for(ll q1=-n;q1<=n;q1++){ for(ll q2=-n;q2<=n;q2++){ if(p1*p1+p2*p2>n) continue; if(q1*q1+q2*q2>n) continue; if(p1*q2-p2*q1!=1) continue; ans+=abs(p1)+abs(p2)+abs(q1)+abs(q2); } } } } return ans; } signed main(){ cin.tie(0); ios::sync_with_stdio(0); using ll = long long; ll n; cin>>n; // cout<<naive(n)<<endl; for(ll i=2;i<MAX;i++){ if(!dp[i].empty()) continue; for(ll j=i;j<MAX;j+=i) dp[j].emplace_back(i); } using M = Mint<int, 998244353>; M ans{0}; for(ll i=1;i*i<=n;i++){ ll j=sqrtl(n-i*i); while(i*i+(j+1)*(j+1)<=n) j++; while(i*i+j*j>n) j--; ll m=dp[i].size(); ll s=1<<m; ll cnt=0; for(ll b=0;b<s;b++){ ll prod=1; for(ll k=0;k<m;k++) if((b>>k)&1) prod*=dp[i][k]; if(__builtin_parity(b)) cnt-=j/prod; else cnt+=j/prod; } ans+=M(i*4)*M(6)*M(cnt); } ans*=M(2); ans+=M(8); cout<<ans<<newl; return 0; }