結果
問題 | No.1019 最小格子三角形 |
ユーザー | beet |
提出日時 | 2020-03-30 10:51:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 481 ms / 2,000 ms |
コード長 | 2,870 bytes |
コンパイル時間 | 2,152 ms |
コンパイル使用メモリ | 203,532 KB |
実行使用メモリ | 58,900 KB |
最終ジャッジ日時 | 2024-06-11 16:09:28 |
合計ジャッジ時間 | 13,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 311 ms
58,752 KB |
testcase_01 | AC | 304 ms
58,896 KB |
testcase_02 | AC | 304 ms
58,808 KB |
testcase_03 | AC | 314 ms
58,880 KB |
testcase_04 | AC | 288 ms
58,752 KB |
testcase_05 | AC | 300 ms
58,852 KB |
testcase_06 | AC | 307 ms
58,880 KB |
testcase_07 | AC | 313 ms
58,752 KB |
testcase_08 | AC | 290 ms
58,828 KB |
testcase_09 | AC | 282 ms
58,880 KB |
testcase_10 | AC | 264 ms
58,752 KB |
testcase_11 | AC | 295 ms
58,880 KB |
testcase_12 | AC | 303 ms
58,876 KB |
testcase_13 | AC | 407 ms
58,712 KB |
testcase_14 | AC | 430 ms
58,752 KB |
testcase_15 | AC | 447 ms
58,816 KB |
testcase_16 | AC | 432 ms
58,752 KB |
testcase_17 | AC | 438 ms
58,860 KB |
testcase_18 | AC | 423 ms
58,836 KB |
testcase_19 | AC | 442 ms
58,752 KB |
testcase_20 | AC | 419 ms
58,740 KB |
testcase_21 | AC | 436 ms
58,828 KB |
testcase_22 | AC | 452 ms
58,800 KB |
testcase_23 | AC | 455 ms
58,900 KB |
testcase_24 | AC | 463 ms
58,696 KB |
testcase_25 | AC | 481 ms
58,880 KB |
testcase_26 | AC | 450 ms
58,708 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; }