結果

問題 No.800 四平方定理
ユーザー CuriousFairy315CuriousFairy315
提出日時 2019-03-17 21:46:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 67,776 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-07-07 21:35:23
合計ジャッジ時間 2,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 18 ms
18,944 KB
testcase_11 AC 23 ms
20,736 KB
testcase_12 AC 18 ms
20,480 KB
testcase_13 AC 21 ms
19,584 KB
testcase_14 AC 20 ms
20,736 KB
testcase_15 AC 20 ms
20,608 KB
testcase_16 AC 20 ms
20,864 KB
testcase_17 AC 19 ms
20,992 KB
testcase_18 AC 20 ms
20,864 KB
testcase_19 AC 18 ms
20,864 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 23 ms
20,864 KB
testcase_23 AC 55 ms
34,688 KB
testcase_24 AC 68 ms
34,688 KB
testcase_25 AC 63 ms
34,560 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 57 ms
34,432 KB
testcase_29 AC 66 ms
34,688 KB
testcase_30 AC 59 ms
34,432 KB
testcase_31 AC 45 ms
32,256 KB
testcase_32 AC 61 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std; // 575

int main() {
	int N, D;
	cin >> N >> D;
	++ N;
	int ans = 0;
	static int tempura_killer[16000000];
	for (int z = 1;z < N;++ z) for (int w = 1;w < N;++ w) ++ tempura_killer[8000000 - (w + z) * (w - z)];
	for (int x = 1;x < N;++ x) for (int y = 1;y < N;++ y) ans += tempura_killer[x * x + y * y - D + 8000000];
	cout << ans;
	return 0;
}
/*
31536000のコメント解説欄
ここテンプレで用意してるから、A問題とかだとこの先空欄の危険あり
また、コンテスト後に https://31536000.hatenablog.com/ で解説していると思うので、良かったら読んでねー

2個ずつに分けて計算
*/
0