結果

問題 No.800 四平方定理
ユーザー 910_sendai910_sendai
提出日時 2019-03-18 12:48:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,113 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-07-18 06:41:32
合計ジャッジ時間 16,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
73,216 KB
testcase_01 AC 64 ms
73,336 KB
testcase_02 AC 60 ms
73,168 KB
testcase_03 AC 59 ms
73,216 KB
testcase_04 AC 63 ms
73,176 KB
testcase_05 AC 60 ms
73,188 KB
testcase_06 AC 66 ms
73,216 KB
testcase_07 AC 63 ms
73,344 KB
testcase_08 AC 67 ms
73,216 KB
testcase_09 AC 64 ms
73,216 KB
testcase_10 AC 503 ms
73,256 KB
testcase_11 AC 571 ms
73,188 KB
testcase_12 AC 565 ms
73,216 KB
testcase_13 AC 506 ms
73,216 KB
testcase_14 AC 536 ms
73,216 KB
testcase_15 AC 577 ms
73,252 KB
testcase_16 AC 527 ms
73,216 KB
testcase_17 AC 545 ms
73,192 KB
testcase_18 AC 590 ms
73,188 KB
testcase_19 AC 611 ms
73,188 KB
testcase_20 AC 50 ms
73,344 KB
testcase_21 AC 48 ms
73,184 KB
testcase_22 AC 587 ms
73,292 KB
testcase_23 AC 1,113 ms
73,344 KB
testcase_24 AC 1,006 ms
73,216 KB
testcase_25 AC 1,084 ms
73,216 KB
testcase_26 AC 54 ms
73,216 KB
testcase_27 AC 52 ms
73,184 KB
testcase_28 AC 1,035 ms
73,344 KB
testcase_29 AC 1,095 ms
73,316 KB
testcase_30 AC 1,013 ms
73,344 KB
testcase_31 AC 936 ms
73,344 KB
testcase_32 AC 1,048 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, D = map(int, input().split())
    ans = 0
    p = []
    cnt =[0] * (8 * 10**6 + 1)
    ## x*x + y*y = s 
    for i in range(1, N+1):
        p.append(i*i)
    for z in p:
        for w in p:
            s = w - z + D
            if s >= 0:
                cnt[s] += 1
    for x in p:
        for y in p:
            ans += cnt[x+y]
    print(ans)
solve()
0