結果

問題 No.800 四平方定理
ユーザー pluto77pluto77
提出日時 2019-11-01 09:17:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,865 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 68,856 KB
最終ジャッジ日時 2024-09-14 22:18:23
合計ジャッジ時間 28,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
68,720 KB
testcase_01 AC 124 ms
68,660 KB
testcase_02 AC 118 ms
68,608 KB
testcase_03 AC 120 ms
68,608 KB
testcase_04 AC 117 ms
68,712 KB
testcase_05 AC 120 ms
68,676 KB
testcase_06 AC 129 ms
68,568 KB
testcase_07 AC 125 ms
68,496 KB
testcase_08 AC 139 ms
68,656 KB
testcase_09 AC 130 ms
68,736 KB
testcase_10 AC 951 ms
68,732 KB
testcase_11 AC 1,016 ms
68,736 KB
testcase_12 AC 1,028 ms
68,736 KB
testcase_13 AC 892 ms
68,480 KB
testcase_14 AC 963 ms
68,608 KB
testcase_15 AC 1,153 ms
68,736 KB
testcase_16 AC 986 ms
68,736 KB
testcase_17 AC 986 ms
68,704 KB
testcase_18 AC 1,107 ms
68,736 KB
testcase_19 AC 1,082 ms
68,644 KB
testcase_20 AC 101 ms
68,608 KB
testcase_21 AC 99 ms
68,632 KB
testcase_22 AC 1,105 ms
68,736 KB
testcase_23 AC 1,865 ms
68,664 KB
testcase_24 AC 1,754 ms
68,676 KB
testcase_25 AC 1,849 ms
68,856 KB
testcase_26 AC 101 ms
68,716 KB
testcase_27 AC 101 ms
68,732 KB
testcase_28 AC 1,696 ms
68,608 KB
testcase_29 AC 1,785 ms
68,732 KB
testcase_30 AC 1,707 ms
68,676 KB
testcase_31 AC 1,590 ms
68,608 KB
testcase_32 AC 1,752 ms
68,848 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