結果

問題 No.800 四平方定理
ユーザー pluto77pluto77
提出日時 2019-03-24 14:45:44
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,913 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 69,060 KB
最終ジャッジ日時 2024-10-02 07:58:16
合計ジャッジ時間 28,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
68,564 KB
testcase_01 AC 123 ms
68,736 KB
testcase_02 AC 115 ms
68,644 KB
testcase_03 AC 117 ms
68,736 KB
testcase_04 AC 127 ms
68,608 KB
testcase_05 AC 116 ms
68,736 KB
testcase_06 AC 126 ms
68,736 KB
testcase_07 AC 124 ms
68,736 KB
testcase_08 AC 132 ms
68,648 KB
testcase_09 AC 123 ms
68,736 KB
testcase_10 AC 961 ms
68,736 KB
testcase_11 AC 1,032 ms
68,608 KB
testcase_12 AC 1,069 ms
68,608 KB
testcase_13 AC 939 ms
68,736 KB
testcase_14 AC 981 ms
68,736 KB
testcase_15 AC 1,063 ms
68,736 KB
testcase_16 AC 981 ms
68,736 KB
testcase_17 AC 987 ms
68,608 KB
testcase_18 AC 1,115 ms
68,608 KB
testcase_19 AC 1,139 ms
68,608 KB
testcase_20 AC 98 ms
68,736 KB
testcase_21 AC 101 ms
68,736 KB
testcase_22 AC 1,134 ms
68,736 KB
testcase_23 AC 1,913 ms
68,868 KB
testcase_24 AC 1,755 ms
68,736 KB
testcase_25 AC 1,902 ms
69,060 KB
testcase_26 AC 96 ms
68,736 KB
testcase_27 AC 100 ms
68,736 KB
testcase_28 AC 1,744 ms
68,864 KB
testcase_29 AC 1,822 ms
68,856 KB
testcase_30 AC 1,838 ms
68,756 KB
testcase_31 AC 1,628 ms
68,736 KB
testcase_32 AC 1,764 ms
68,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki800

n,d=map(int,raw_input().split())
t=[]
u=[0]*8000001
for i in xrange(1,n+1):
 t.append(i*i)
for i in t:
 for j in t:
  s=i-j+d
  if s>=1:
   u[s]+=1
res=0
for i in t:
 for j in t:
  res+=u[i+j]
print res
0