結果

問題 No.800 四平方定理
ユーザー pluto77pluto77
提出日時 2019-11-01 09:17:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 140,548 KB
最終ジャッジ日時 2024-09-14 22:31:47
合計ジャッジ時間 8,289 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
139,220 KB
testcase_01 AC 111 ms
139,592 KB
testcase_02 AC 108 ms
139,628 KB
testcase_03 AC 111 ms
139,988 KB
testcase_04 AC 109 ms
139,616 KB
testcase_05 AC 110 ms
139,912 KB
testcase_06 AC 108 ms
140,040 KB
testcase_07 AC 114 ms
140,128 KB
testcase_08 AC 105 ms
139,084 KB
testcase_09 AC 110 ms
139,628 KB
testcase_10 AC 177 ms
140,284 KB
testcase_11 AC 181 ms
140,164 KB
testcase_12 AC 186 ms
140,548 KB
testcase_13 AC 195 ms
139,876 KB
testcase_14 AC 166 ms
140,020 KB
testcase_15 AC 185 ms
140,020 KB
testcase_16 AC 192 ms
139,788 KB
testcase_17 AC 162 ms
140,132 KB
testcase_18 AC 221 ms
139,908 KB
testcase_19 AC 206 ms
140,144 KB
testcase_20 AC 98 ms
137,948 KB
testcase_21 AC 99 ms
138,140 KB
testcase_22 AC 199 ms
139,748 KB
testcase_23 AC 272 ms
140,144 KB
testcase_24 AC 233 ms
140,032 KB
testcase_25 AC 387 ms
140,404 KB
testcase_26 AC 98 ms
138,332 KB
testcase_27 AC 98 ms
137,948 KB
testcase_28 AC 237 ms
139,872 KB
testcase_29 AC 262 ms
139,652 KB
testcase_30 AC 238 ms
140,024 KB
testcase_31 AC 226 ms
140,048 KB
testcase_32 AC 236 ms
140,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki800

n,d=map(int,raw_input().split())
sq=[i*i for i in range(1,n+1)]
cnt=[0]*8000001
for w in sq:
 for z in sq:
  a=w-z+d
  if a>=1:
   cnt[a]+=1
res=0
for x in sq:
 for y in sq:
  res+=cnt[x+y]
print res
0