結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-14 13:56:29
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 257 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-07-01 19:35:22
合計ジャッジ時間 5,941 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
98,944 KB
testcase_01 AC 86 ms
99,328 KB
testcase_02 AC 83 ms
99,840 KB
testcase_03 AC 83 ms
99,840 KB
testcase_04 AC 84 ms
99,840 KB
testcase_05 AC 84 ms
99,456 KB
testcase_06 AC 84 ms
99,712 KB
testcase_07 AC 82 ms
98,688 KB
testcase_08 AC 80 ms
98,432 KB
testcase_09 AC 83 ms
99,584 KB
testcase_10 AC 152 ms
100,224 KB
testcase_11 AC 156 ms
100,608 KB
testcase_12 AC 165 ms
101,376 KB
testcase_13 AC 150 ms
100,224 KB
testcase_14 AC 150 ms
100,736 KB
testcase_15 AC 158 ms
100,864 KB
testcase_16 AC 145 ms
100,992 KB
testcase_17 AC 155 ms
99,968 KB
testcase_18 AC 174 ms
100,480 KB
testcase_19 AC 177 ms
100,480 KB
testcase_20 AC 71 ms
90,752 KB
testcase_21 AC 68 ms
90,880 KB
testcase_22 AC 171 ms
100,352 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 72 ms
90,624 KB
testcase_27 AC 72 ms
90,624 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
MAX=5000000
cnt1=[0]*MAX
for i in range(1,n+1) :
    for j in range(1,n+1) :
        cnt1[i*i+j*j]+=1
ans=0
for i in range(1,n+1) :
    for j in range(1,n+1) :
        if i*i-j*j+d>0 :
            ans+=cnt1[i*i-j*j+d]
print(ans)
0