結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 16:00:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,738 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,284 KB
最終ジャッジ日時 2024-07-01 19:48:26
合計ジャッジ時間 25,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
73,120 KB
testcase_01 AC 77 ms
73,140 KB
testcase_02 AC 71 ms
73,128 KB
testcase_03 AC 74 ms
73,184 KB
testcase_04 AC 96 ms
72,940 KB
testcase_05 AC 75 ms
73,044 KB
testcase_06 AC 86 ms
73,244 KB
testcase_07 AC 83 ms
73,140 KB
testcase_08 AC 94 ms
73,168 KB
testcase_09 AC 78 ms
73,228 KB
testcase_10 AC 865 ms
73,184 KB
testcase_11 AC 904 ms
73,220 KB
testcase_12 AC 964 ms
73,120 KB
testcase_13 AC 774 ms
72,948 KB
testcase_14 AC 834 ms
73,256 KB
testcase_15 AC 971 ms
73,228 KB
testcase_16 AC 836 ms
73,124 KB
testcase_17 AC 839 ms
73,164 KB
testcase_18 AC 1,055 ms
73,220 KB
testcase_19 AC 1,101 ms
73,212 KB
testcase_20 AC 59 ms
73,256 KB
testcase_21 AC 60 ms
73,204 KB
testcase_22 AC 1,053 ms
73,284 KB
testcase_23 AC 1,738 ms
73,192 KB
testcase_24 AC 1,459 ms
72,944 KB
testcase_25 AC 1,731 ms
73,140 KB
testcase_26 AC 61 ms
73,112 KB
testcase_27 AC 60 ms
73,072 KB
testcase_28 AC 1,467 ms
73,128 KB
testcase_29 AC 1,611 ms
72,940 KB
testcase_30 AC 1,471 ms
73,060 KB
testcase_31 AC 1,362 ms
73,248 KB
testcase_32 AC 1,496 ms
73,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,d=map(int,input().split())
    MAX=8000001
    cnt=[0]*MAX
    for i in range(1,n+1) :
        for j in range(i+1,n+1) :
            if i*i-j*j+d>0 :
                cnt[i*i-j*j+d]+=1
            cnt[j*j-i*i+d]+=1
    cnt[d]+=n;
    ans=0
    for i in range(1,n+1) :
        for j in range(i+1,n+1) :
            ans+=2*cnt[i*i+j*j]
    for i in range(1,n+1) :
        ans+=cnt[2*i*i]
    print(ans)
solve()
0