結果

問題 No.800 四平方定理
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 19:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,917 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 183,564 KB
最終ジャッジ日時 2024-09-18 19:51:11
合計ジャッジ時間 26,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,696 KB
testcase_01 AC 60 ms
66,916 KB
testcase_02 AC 58 ms
66,612 KB
testcase_03 AC 58 ms
66,720 KB
testcase_04 AC 56 ms
66,640 KB
testcase_05 AC 58 ms
66,956 KB
testcase_06 AC 63 ms
68,540 KB
testcase_07 AC 60 ms
66,664 KB
testcase_08 AC 67 ms
67,876 KB
testcase_09 AC 64 ms
68,944 KB
testcase_10 AC 753 ms
147,144 KB
testcase_11 AC 820 ms
147,656 KB
testcase_12 AC 816 ms
147,860 KB
testcase_13 AC 881 ms
147,288 KB
testcase_14 AC 935 ms
147,368 KB
testcase_15 AC 894 ms
147,256 KB
testcase_16 AC 923 ms
147,200 KB
testcase_17 AC 890 ms
147,568 KB
testcase_18 AC 858 ms
147,244 KB
testcase_19 AC 857 ms
147,504 KB
testcase_20 AC 40 ms
52,828 KB
testcase_21 AC 41 ms
52,472 KB
testcase_22 AC 915 ms
147,472 KB
testcase_23 AC 1,854 ms
183,232 KB
testcase_24 AC 1,845 ms
183,260 KB
testcase_25 AC 1,844 ms
183,136 KB
testcase_26 AC 39 ms
52,052 KB
testcase_27 AC 39 ms
52,116 KB
testcase_28 AC 1,759 ms
183,564 KB
testcase_29 AC 1,773 ms
183,264 KB
testcase_30 AC 1,864 ms
183,132 KB
testcase_31 AC 1,564 ms
177,208 KB
testcase_32 AC 1,917 ms
183,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,D=map(int,input().split())
d={}
for x in range(1,n+1):
	for y in range(1,n+1):
		v=x**2+y**2
		if v not in d:
			d[v]=0
		d[v]+=1
g=0
for z in range(1,n+1):
	for w in range(1,n+1):
		v=w**2+D-z**2
		if v in d:
			g+=d[v]
print(g)
0