結果

問題 No.800 四平方定理
ユーザー urayamakoutarouurayamakoutarou
提出日時 2019-04-29 15:30:08
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 54,360 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-24 12:41:29
合計ジャッジ時間 65,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
10,496 KB
testcase_01 AC 687 ms
8,320 KB
testcase_02 AC 347 ms
8,448 KB
testcase_03 AC 445 ms
8,448 KB
testcase_04 AC 304 ms
8,320 KB
testcase_05 AC 411 ms
8,448 KB
testcase_06 AC 990 ms
10,496 KB
testcase_07 AC 560 ms
8,320 KB
testcase_08 AC 1,146 ms
8,576 KB
testcase_09 AC 866 ms
8,576 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1 ms
8,576 KB
testcase_21 AC 1 ms
8,448 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
8,448 KB
testcase_27 AC 2 ms
8,448 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
	int N ,D,a,b,c,d,s;
	cin >> N >> D;
	s = 0;
	a = 1;
	b = 1;
	c = 1;
	d = 1;
	while (a <= N) {
		b = a;
		while (b <= N) {
			c = b;
			while (c <= N) {
				while(d<=N){
					if (a*a + b * b + c * c - d * d == D) {
						if (a != b && b != c && c != a) { s = s + 6; }
						else if (a==b&&b==c) { s++; }
						else { s=s+3; }
					 }
					
					d++;
				}d = 1;c++;
			}c = 1;b++;
		}b = 1;a++;
	}
	cout << s << endl;
	return 0;
}
0