結果

問題 No.800 四平方定理
ユーザー sho_00sho_00
提出日時 2020-04-09 20:30:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 133,632 KB
最終ジャッジ日時 2024-09-13 20:19:57
合計ジャッジ時間 5,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,056 KB
testcase_01 AC 52 ms
62,592 KB
testcase_02 AC 50 ms
62,080 KB
testcase_03 AC 50 ms
62,592 KB
testcase_04 AC 49 ms
62,080 KB
testcase_05 AC 50 ms
62,208 KB
testcase_06 AC 54 ms
62,976 KB
testcase_07 AC 50 ms
62,208 KB
testcase_08 AC 53 ms
64,256 KB
testcase_09 AC 51 ms
62,592 KB
testcase_10 AC 126 ms
97,536 KB
testcase_11 AC 132 ms
100,352 KB
testcase_12 AC 147 ms
101,504 KB
testcase_13 AC 124 ms
95,488 KB
testcase_14 AC 130 ms
98,432 KB
testcase_15 AC 136 ms
101,888 KB
testcase_16 AC 136 ms
98,432 KB
testcase_17 AC 142 ms
98,804 KB
testcase_18 AC 140 ms
106,072 KB
testcase_19 AC 135 ms
106,112 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 134 ms
106,496 KB
testcase_23 AC 222 ms
133,632 KB
testcase_24 AC 193 ms
126,208 KB
testcase_25 AC 218 ms
133,504 KB
testcase_26 AC 38 ms
51,456 KB
testcase_27 AC 41 ms
59,392 KB
testcase_28 AC 202 ms
125,312 KB
testcase_29 AC 211 ms
129,280 KB
testcase_30 AC 196 ms
125,572 KB
testcase_31 AC 189 ms
121,296 KB
testcase_32 AC 205 ms
126,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
L=[0]*(D+2*N**2)
cnt=0
for i in range(1,N+1):
  for j in range(1,N+1):
    L[i**2+j**2-1]+=1
for z  in range(1,N+1):
  for w in range(1,N+1):
    A=D+w**2-z**2
    if A<=1:
      pass
    else:
      cnt+=L[A-1]
print(cnt)
0