結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 00:23:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 323 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-07-01 19:40:04
合計ジャッジ時間 22,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
49,792 KB
testcase_01 AC 94 ms
49,920 KB
testcase_02 AC 85 ms
49,920 KB
testcase_03 AC 86 ms
49,792 KB
testcase_04 AC 87 ms
49,792 KB
testcase_05 AC 86 ms
49,792 KB
testcase_06 AC 98 ms
49,792 KB
testcase_07 AC 96 ms
49,792 KB
testcase_08 AC 107 ms
49,792 KB
testcase_09 AC 94 ms
49,792 KB
testcase_10 AC 1,245 ms
49,792 KB
testcase_11 AC 1,364 ms
49,792 KB
testcase_12 AC 1,399 ms
49,792 KB
testcase_13 AC 1,200 ms
49,792 KB
testcase_14 AC 1,274 ms
49,792 KB
testcase_15 AC 1,429 ms
49,792 KB
testcase_16 AC 1,281 ms
49,792 KB
testcase_17 AC 1,305 ms
49,920 KB
testcase_18 AC 1,492 ms
49,792 KB
testcase_19 AC 1,493 ms
49,792 KB
testcase_20 AC 63 ms
49,792 KB
testcase_21 AC 62 ms
49,920 KB
testcase_22 AC 1,523 ms
49,792 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 62 ms
49,792 KB
testcase_27 AC 62 ms
49,792 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,d=map(int,input().split())
    MAX=5000000
    cnt=[0]*MAX
    for i in range(1,n+1) :
        for j in range(1,n+1) :
            cnt[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+=cnt[i*i-j*j+d]
    print(ans)
solve()
0