結果

問題 No.2979 直角三角形の個数
ユーザー 👑 testestesttestestest
提出日時 2024-12-01 23:58:28
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 242,924 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-02 23:30:14
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 4 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 12 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 119 ms
5,248 KB
testcase_15 AC 113 ms
5,248 KB
testcase_16 AC 644 ms
5,248 KB
testcase_17 AC 2,424 ms
5,248 KB
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 28 ms
5,248 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

i64 ans=0;
i64 N;

void gen(i64 a,i64 b,i64 c){
	i64 cnt=N/(a+b+c);
	if(cnt==0)return;
	ans+=cnt;
	gen( a+2*b+2*c, 2*a+b+2*c, 2*a+2*b+3*c);
	gen(-a+2*b+2*c,-2*a+b+2*c,-2*a+2*b+3*c);
	gen( a-2*b+2*c, 2*a-b+2*c, 2*a-2*b+3*c);
}

int main(){
	cin >> N;
	if(N>1e9)return 0;
	gen(3,4,5);
	cout << ans << endl;
}
0