結果

問題 No.800 四平方定理
ユーザー UekiUeki
提出日時 2019-03-17 23:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 153,592 KB
最終ジャッジ日時 2024-07-08 03:30:27
合計ジャッジ時間 5,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
137,600 KB
testcase_01 AC 72 ms
138,496 KB
testcase_02 AC 72 ms
137,472 KB
testcase_03 AC 71 ms
138,032 KB
testcase_04 AC 70 ms
137,968 KB
testcase_05 AC 72 ms
138,368 KB
testcase_06 AC 78 ms
138,368 KB
testcase_07 AC 76 ms
142,208 KB
testcase_08 AC 72 ms
136,832 KB
testcase_09 AC 71 ms
138,752 KB
testcase_10 AC 149 ms
153,536 KB
testcase_11 AC 153 ms
153,088 KB
testcase_12 AC 163 ms
153,444 KB
testcase_13 AC 130 ms
153,088 KB
testcase_14 AC 138 ms
153,088 KB
testcase_15 AC 160 ms
153,360 KB
testcase_16 AC 138 ms
153,216 KB
testcase_17 AC 137 ms
153,312 KB
testcase_18 AC 169 ms
153,472 KB
testcase_19 AC 180 ms
153,544 KB
testcase_20 AC 64 ms
129,792 KB
testcase_21 AC 64 ms
130,432 KB
testcase_22 AC 173 ms
153,172 KB
testcase_23 AC 258 ms
153,164 KB
testcase_24 AC 206 ms
153,592 KB
testcase_25 AC 261 ms
153,168 KB
testcase_26 AC 64 ms
130,048 KB
testcase_27 AC 62 ms
129,664 KB
testcase_28 AC 214 ms
153,216 KB
testcase_29 AC 235 ms
153,236 KB
testcase_30 AC 209 ms
153,364 KB
testcase_31 AC 192 ms
153,360 KB
testcase_32 AC 210 ms
153,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# python template for atcoder1
import sys
sys.setrecursionlimit(10**9)
input = sys.stdin.readline

N, D = map(int, input().split())


def solve2():
    p = [x**2 for x in range(1, N+1)]
    cnt = [0]*10**7

    for w in p:
        for z in p:
            tmp = w-z+D
            if tmp > 0:
                cnt[tmp] += 1

    ans = 0
    for x in p:
        for y in p:
            ans += cnt[x+y]
    print(ans)


solve2()
0