結果

問題 No.800 四平方定理
ユーザー anagohirameanagohirame
提出日時 2019-03-17 23:29:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 166,656 KB
最終ジャッジ日時 2024-07-08 03:28:56
合計ジャッジ時間 5,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
163,456 KB
testcase_01 AC 90 ms
164,352 KB
testcase_02 AC 93 ms
163,840 KB
testcase_03 AC 89 ms
164,096 KB
testcase_04 AC 87 ms
164,096 KB
testcase_05 AC 89 ms
163,840 KB
testcase_06 AC 92 ms
164,096 KB
testcase_07 AC 93 ms
164,096 KB
testcase_08 AC 93 ms
163,712 KB
testcase_09 AC 91 ms
164,352 KB
testcase_10 AC 135 ms
166,144 KB
testcase_11 AC 139 ms
165,888 KB
testcase_12 AC 140 ms
166,144 KB
testcase_13 AC 133 ms
165,888 KB
testcase_14 AC 144 ms
166,144 KB
testcase_15 AC 142 ms
165,888 KB
testcase_16 AC 145 ms
166,272 KB
testcase_17 AC 138 ms
166,144 KB
testcase_18 AC 145 ms
166,400 KB
testcase_19 AC 142 ms
166,188 KB
testcase_20 AC 80 ms
159,104 KB
testcase_21 AC 81 ms
159,360 KB
testcase_22 AC 146 ms
165,888 KB
testcase_23 AC 205 ms
166,528 KB
testcase_24 AC 196 ms
166,400 KB
testcase_25 AC 211 ms
166,016 KB
testcase_26 AC 83 ms
159,360 KB
testcase_27 AC 82 ms
159,232 KB
testcase_28 AC 192 ms
166,528 KB
testcase_29 AC 196 ms
166,656 KB
testcase_30 AC 195 ms
166,144 KB
testcase_31 AC 186 ms
166,144 KB
testcase_32 AC 194 ms
166,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
ans = 0
sahen = [0] * 8000001
uhen = [0] * 5000001
for x in range(1, n+1):
	for y in range(1, n+1):
		sahen[x**2 + y**2] += 1
for z in range(1, n+1):
	for w in range(1, n+1):
		if w**2 + d - z**2 >= 0:
			uhen[w**2 + d - z**2] += 1
ans = 0
for i in range(5000001):
	ans += sahen[i] * uhen[i]
print(ans)
0