結果

問題 No.800 四平方定理
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-17 23:16:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 287,188 KB
最終ジャッジ日時 2024-09-26 05:34:51
合計ジャッジ時間 20,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
70,984 KB
testcase_01 AC 70 ms
76,800 KB
testcase_02 AC 64 ms
72,832 KB
testcase_03 AC 67 ms
75,392 KB
testcase_04 AC 67 ms
72,832 KB
testcase_05 AC 65 ms
74,496 KB
testcase_06 AC 74 ms
79,488 KB
testcase_07 AC 68 ms
75,264 KB
testcase_08 AC 74 ms
79,488 KB
testcase_09 AC 69 ms
76,672 KB
testcase_10 AC 853 ms
227,328 KB
testcase_11 AC 823 ms
241,352 KB
testcase_12 AC 834 ms
241,472 KB
testcase_13 AC 874 ms
214,156 KB
testcase_14 AC 912 ms
241,348 KB
testcase_15 AC 909 ms
241,596 KB
testcase_16 AC 885 ms
241,348 KB
testcase_17 AC 871 ms
241,484 KB
testcase_18 AC 905 ms
241,216 KB
testcase_19 AC 928 ms
241,416 KB
testcase_20 AC 43 ms
54,912 KB
testcase_21 AC 43 ms
55,424 KB
testcase_22 AC 926 ms
241,352 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
56,708 KB
testcase_27 AC 41 ms
57,476 KB
testcase_28 AC 1,894 ms
286,188 KB
testcase_29 AC 1,974 ms
286,772 KB
testcase_30 TLE -
testcase_31 AC 1,822 ms
274,340 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

A = defaultdict(int)
for i in range(1,N+1):
    i2 = i*i
    for j in range(1,N+1):
        j2 = j*j
        A[D + i2 - j2] += 1


ans = 0
for i in range(1,N+1):
    i2 = i*i
    for j in range(1,N+1):
        j2 = j*j
        ans += A[i2+j2]
print(ans)
0