結果

問題 No.1019 最小格子三角形
ユーザー tko919tko919
提出日時 2020-05-18 17:08:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 2,098 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 168,264 KB
実行使用メモリ 11,372 KB
最終ジャッジ日時 2024-04-09 21:30:22
合計ジャッジ時間 5,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
11,200 KB
testcase_01 AC 44 ms
11,196 KB
testcase_02 AC 42 ms
11,188 KB
testcase_03 AC 42 ms
11,360 KB
testcase_04 AC 42 ms
11,268 KB
testcase_05 AC 47 ms
11,312 KB
testcase_06 AC 49 ms
11,272 KB
testcase_07 AC 48 ms
11,204 KB
testcase_08 AC 45 ms
11,372 KB
testcase_09 AC 42 ms
11,200 KB
testcase_10 AC 45 ms
11,304 KB
testcase_11 AC 45 ms
11,200 KB
testcase_12 AC 42 ms
11,224 KB
testcase_13 AC 126 ms
11,308 KB
testcase_14 AC 151 ms
11,224 KB
testcase_15 AC 146 ms
11,164 KB
testcase_16 AC 130 ms
11,204 KB
testcase_17 AC 140 ms
11,264 KB
testcase_18 AC 132 ms
11,284 KB
testcase_19 AC 143 ms
11,204 KB
testcase_20 AC 128 ms
11,292 KB
testcase_21 AC 135 ms
11,268 KB
testcase_22 AC 149 ms
11,296 KB
testcase_23 AC 154 ms
11,280 KB
testcase_24 AC 153 ms
11,292 KB
testcase_25 AC 156 ms
11,272 KB
testcase_26 AC 155 ms
11,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
//end

template<unsigned mod=998244353>struct fp {
   unsigned v;
   static unsigned get_mod(){return mod;}
   unsigned inv() const{
      int tmp,a=v,b=mod,x=1,y=0;
      while(b)tmp=a/b,a-=tmp*b,swap(a,b),x-=tmp*y,swap(x,y);
      if(x<0){x+=mod;} return x;
   }
   fp():v(0){}
   fp(ll x):v(x>=0?x%mod:mod+(x%mod)){}
   fp operator-()const{return fp(-v);}
   fp pow(ll t){fp res=1,b=*this; while(t){if(t&1)res*=b;b*=b;t>>=1;} return res;}
   fp& operator+=(const fp& x){if((v+=x.v)>=mod)v-=mod; return *this;}
   fp& operator-=(const fp& x){if((v+=mod-x.v)>=mod)v-=mod; return *this;}
   fp& operator*=(const fp& x){v=ll(v)*x.v%mod; return *this;}
   fp& operator/=(const fp& x){v=ll(v)*x.inv()%mod; return *this;}
   fp operator+(const fp& x)const{return fp(*this)+=x;}
   fp operator-(const fp& x)const{return fp(*this)-=x;}
   fp operator*(const fp& x)const{return fp(*this)*=x;}
   fp operator/(const fp& x)const{return fp(*this)/=x;}
   bool operator==(const fp& x)const{return v==x.v;}
   bool operator!=(const fp& x)const{return v!=x.v;}
}; using Fp=fp<>;

Fp calc(ll n){
   //sum_{x*x+y*y<=n} abs(x)+abs(y)
   Fp res;
   for(ll x=1;x*x<=n;x++){
      Fp y=(ll)sqrt(n-x*x)*2+1;
      res+=y*x;
   } return res*4;
}

int main(){
   ll n; cin>>n;
   const int m=1010101;
   vector<ll> mu(m,1); bitset<m> isp;
   rep(i,2,m)isp[i]=1;
   for(ll i=2;i<m;i++)if(isp[i]){
      for(ll j=i*i;j<m;j+=i)isp[j]=0;
   }      
   for(ll i=2;i<m;i++)if(isp[i]){
      for(ll j=i*i;j<m;j+=i*i)mu[j]=0;
      for(ll j=i;j<m;j+=i)mu[j]*=-1;
   }
   Fp res;
   for(int d=1;d<m;d++)res+=calc(n/d/d)*mu[d]*d;
   res=res*6-16; cout<<res.v<<endl;
   return 0;
}
0