結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-14 13:52:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 257 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-07-01 19:36:28
合計ジャッジ時間 33,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
49,536 KB
testcase_01 AC 144 ms
49,792 KB
testcase_02 AC 125 ms
49,536 KB
testcase_03 AC 132 ms
49,536 KB
testcase_04 AC 125 ms
49,536 KB
testcase_05 AC 130 ms
49,664 KB
testcase_06 AC 151 ms
49,664 KB
testcase_07 AC 148 ms
49,536 KB
testcase_08 AC 164 ms
49,536 KB
testcase_09 AC 140 ms
49,536 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,850 ms
49,664 KB
testcase_14 AC 1,949 ms
49,664 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 87 ms
49,536 KB
testcase_21 AC 87 ms
49,664 KB
testcase_22 TLE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 88 ms
49,536 KB
testcase_27 AC 88 ms
49,536 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