結果

問題 No.800 四平方定理
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-01 15:54:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 250,472 KB
最終ジャッジ日時 2024-07-08 02:45:16
合計ジャッジ時間 8,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
247,396 KB
testcase_01 AC 163 ms
248,020 KB
testcase_02 AC 161 ms
248,300 KB
testcase_03 AC 158 ms
248,112 KB
testcase_04 AC 159 ms
248,848 KB
testcase_05 AC 157 ms
248,716 KB
testcase_06 AC 160 ms
248,452 KB
testcase_07 AC 176 ms
250,472 KB
testcase_08 AC 160 ms
249,184 KB
testcase_09 AC 160 ms
249,012 KB
testcase_10 AC 214 ms
248,112 KB
testcase_11 AC 217 ms
249,052 KB
testcase_12 AC 216 ms
249,536 KB
testcase_13 AC 205 ms
248,388 KB
testcase_14 AC 215 ms
248,988 KB
testcase_15 AC 218 ms
248,280 KB
testcase_16 AC 214 ms
248,912 KB
testcase_17 AC 215 ms
248,288 KB
testcase_18 AC 217 ms
248,408 KB
testcase_19 AC 215 ms
248,164 KB
testcase_20 AC 141 ms
245,036 KB
testcase_21 AC 142 ms
245,988 KB
testcase_22 AC 223 ms
248,804 KB
testcase_23 AC 279 ms
248,144 KB
testcase_24 AC 285 ms
248,612 KB
testcase_25 AC 282 ms
248,708 KB
testcase_26 AC 142 ms
246,716 KB
testcase_27 AC 142 ms
245,228 KB
testcase_28 AC 274 ms
248,680 KB
testcase_29 AC 279 ms
248,200 KB
testcase_30 AC 274 ms
248,608 KB
testcase_31 AC 267 ms
249,780 KB
testcase_32 AC 273 ms
248,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ADD = 4*10**6


def main():
    N, D = (int(i) for i in input().split())

    cA = [0]*(3*ADD+1)
    for x in range(1, N+1):
        for y in range(1, N+1):
            v = x**2 + y**2 + ADD
            cA[v] += 1

    cB = [0]*(3*ADD+1)
    for z in range(1, N+1):
        for w in range(1, N+1):
            v = w**2 - z**2 + D + ADD
            cB[v] += 1

    ans = 0
    for a, b in zip(cA, cB):
        ans += a*b
    print(ans)


if __name__ == '__main__':
    main()
0