結果

問題 No.2979 直角三角形の個数
ユーザー daiotadaiota
提出日時 2024-12-03 09:00:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 166,220 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-12-03 09:00:47
合計ジャッジ時間 17,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,320 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 19 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 TLE -
testcase_23 WA -
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 110 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;


	if(N%2==1 || N<12){
		cout << 0 << endl;
		return 0;
	}


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




			c+=k/(m*(m+n));

		}
	}



	cout << c << endl;







	return 0;

}
0