結果

問題 No.2979 直角三角形の個数
ユーザー kotatsugamekotatsugame
提出日時 2024-12-25 06:39:37
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,500 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 105,172 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-25 06:39:56
合計ジャッジ時間 17,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,552 KB
testcase_01 AC 14 ms
7,552 KB
testcase_02 AC 14 ms
7,552 KB
testcase_03 AC 14 ms
7,680 KB
testcase_04 AC 14 ms
7,808 KB
testcase_05 AC 14 ms
7,552 KB
testcase_06 AC 14 ms
7,552 KB
testcase_07 AC 14 ms
7,552 KB
testcase_08 AC 14 ms
7,552 KB
testcase_09 AC 14 ms
7,680 KB
testcase_10 AC 15 ms
7,680 KB
testcase_11 AC 13 ms
7,552 KB
testcase_12 AC 16 ms
7,680 KB
testcase_13 AC 15 ms
7,552 KB
testcase_14 AC 20 ms
7,680 KB
testcase_15 AC 18 ms
7,680 KB
testcase_16 AC 31 ms
7,552 KB
testcase_17 AC 56 ms
7,552 KB
testcase_18 AC 136 ms
7,552 KB
testcase_19 AC 184 ms
7,424 KB
testcase_20 AC 489 ms
7,552 KB
testcase_21 AC 739 ms
7,552 KB
testcase_22 AC 3,883 ms
7,552 KB
testcase_23 AC 3,977 ms
7,680 KB
testcase_24 AC 14 ms
7,552 KB
testcase_25 AC 14 ms
7,552 KB
testcase_26 AC 14 ms
7,680 KB
testcase_27 AC 16 ms
7,680 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
#include<vector>
#include<cassert>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int t=a%b;
		a=b;
		b=t;
	}
	return a;
}
long N;
int pf[1<<20];
int ps[7],T[1<<7],from[1<<7],parity[1<<7];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	for(int i=2;i<1<<20;i++)if(pf[i]==0)
	{
		for(int j=i;j<1<<20;j+=i)pf[j]=i;
	}
	for(int i=1;i<0<<7;i++)
	{
		from[i]=0;
		while(!(i>>from[i]&1))from[i]++;
		parity[i]=__builtin_parity(i);
	}
	cin>>N;
	long ans=0;
	for(int m=2;;m++)
	{
		long up=(double)N/(2*m);
		int l=m+1,r=(int)min(up,2*m-1L);
		if(l>r)break;
		if(r-l<0)
		{
			for(int nm=l/2*2+1;nm<=r;nm+=2)if(gcd(m,nm)==1)ans+=(double)up/nm;
			continue;
		}
		int pssz=0;
		{
			int v=m;
			while(v%2==0)v/=2;
			ps[pssz++]=2;
			while(v>1)
			{
				int p=pf[v];
				ps[pssz++]=p;
				while(v%p==0)v/=p;
			}
		}
		assert(pssz<=7);
		long sum=0;
		T[0]=1;
		for(int i=0;i<1<<pssz;i++)
		{
			if(i)
			{
				int j=0;//from[i];
				while(!(i>>j&1))j++;
				T[i]=T[i^1<<j]*ps[j];
			}
			int t=T[i];
			int nl=(double)(l+t-1)/t,nr=(double)r/t;
			long nup=(double)up/t;
			long cur=0;
			while(nl<=nr)
			{
				long q=(double)nup/nl;
				int nnl=nr;
				if(nup<q*nr)nnl=(double)nup/q;
				//int nnl=(int)min((long)nr,(long)((double)nup/q))+1;
				cur+=q*(nnl-nl+1);
				nl=nnl+1;
			}
			//for(int j=nl;j<=nr;j++)cur+=nup/j;
			if(__builtin_parity(i))sum-=cur;
			//if(parity[i])sum-=cur;
			else sum+=cur;
		}
		ans+=sum;
	}
	cout<<ans<<endl;
}
0