結果

問題 No.1019 最小格子三角形
ユーザー tko919tko919
提出日時 2020-05-18 17:08:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 2,098 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 171,884 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-10-01 21:58:12
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
11,264 KB
testcase_01 AC 46 ms
11,336 KB
testcase_02 AC 46 ms
11,176 KB
testcase_03 AC 46 ms
11,392 KB
testcase_04 AC 46 ms
11,288 KB
testcase_05 AC 48 ms
11,264 KB
testcase_06 AC 49 ms
11,264 KB
testcase_07 AC 49 ms
11,264 KB
testcase_08 AC 48 ms
11,264 KB
testcase_09 AC 49 ms
11,264 KB
testcase_10 AC 47 ms
11,392 KB
testcase_11 AC 47 ms
11,232 KB
testcase_12 AC 47 ms
11,176 KB
testcase_13 AC 131 ms
11,264 KB
testcase_14 AC 156 ms
11,136 KB
testcase_15 AC 151 ms
11,220 KB
testcase_16 AC 132 ms
11,264 KB
testcase_17 AC 145 ms
11,264 KB
testcase_18 AC 136 ms
11,172 KB
testcase_19 AC 143 ms
11,236 KB
testcase_20 AC 132 ms
11,248 KB
testcase_21 AC 137 ms
11,240 KB
testcase_22 AC 153 ms
11,228 KB
testcase_23 AC 158 ms
11,264 KB
testcase_24 AC 158 ms
11,248 KB
testcase_25 AC 157 ms
11,264 KB
testcase_26 AC 157 ms
11,264 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