結果

問題 No.2979 直角三角形の個数
ユーザー 👑 testestesttestestest
提出日時 2024-11-21 21:50:16
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 2,995 ms
コンパイル使用メモリ 243,300 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-02 23:30:06
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
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 AC 3 ms
5,248 KB
testcase_12 AC 36 ms
5,248 KB
testcase_13 AC 17 ms
5,248 KB
testcase_14 AC 472 ms
5,248 KB
testcase_15 AC 449 ms
5,248 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 100 ms
5,248 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//naive
#include<bits/stdc++.h>
using namespace std;
using i64=long long;

int main(){
	i64 N;
	cin >> N;
	if(N>1e8)return 0;
	i64 ans=0;
	for(i64 i=1;4*i*i<=N;i++)for(i64 j=i+1;2*j*j+2*i*j<=N;j+=2)if(__gcd(i,j)==1)ans+=N/(2*j*j+2*i*j);
	cout << ans << endl;
}
0