結果

問題 No.2979 直角三角形の個数
ユーザー daiotadaiota
提出日時 2024-12-03 09:18:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 166,284 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-03 09:18:55
合計ジャッジ時間 46,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
8,192 KB
testcase_04 AC 2 ms
8,192 KB
testcase_05 AC 2 ms
9,896 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 1 ms
8,320 KB
testcase_08 AC 2 ms
8,448 KB
testcase_09 AC 2 ms
8,320 KB
testcase_10 AC 8 ms
8,320 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 38 ms
5,248 KB
testcase_13 AC 18 ms
5,248 KB
testcase_14 AC 496 ms
5,248 KB
testcase_15 AC 500 ms
5,248 KB
testcase_16 AC 2,997 ms
5,248 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 105 ms
5,248 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(ll i=0;i<ll(n);i++)




ll gcd(ll a,ll b){
	if(b==0) return a;
	else return gcd(b,a%b);
}



int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;


	ll N;
	cin >> N;



	ll c=0;
	for(ll n=1;4*n*n<N;n++){
		for(ll m=n+1;4*m*n<N;m++){
			if((m+n)%2==0) continue;
			if(2*m*(m+n)>N) continue;
			if(gcd(m,n)!=1) continue;




			c+=N/(2*m*(m+n));

		}
	}



	cout << c << endl;







	return 0;

}
0