結果

問題 No.800 四平方定理
ユーザー rlangevinrlangevin
提出日時 2022-08-20 11:31:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 317,228 KB
最終ジャッジ日時 2024-10-09 04:53:18
合計ジャッジ時間 30,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,096 KB
testcase_01 AC 69 ms
74,752 KB
testcase_02 AC 67 ms
70,784 KB
testcase_03 AC 67 ms
73,600 KB
testcase_04 AC 65 ms
70,784 KB
testcase_05 AC 66 ms
72,960 KB
testcase_06 AC 73 ms
77,568 KB
testcase_07 AC 67 ms
73,216 KB
testcase_08 AC 74 ms
77,568 KB
testcase_09 AC 69 ms
74,880 KB
testcase_10 AC 917 ms
266,136 KB
testcase_11 AC 973 ms
225,500 KB
testcase_12 AC 968 ms
225,748 KB
testcase_13 AC 985 ms
221,432 KB
testcase_14 AC 965 ms
225,756 KB
testcase_15 AC 1,024 ms
225,624 KB
testcase_16 AC 998 ms
225,880 KB
testcase_17 AC 985 ms
225,640 KB
testcase_18 AC 990 ms
225,876 KB
testcase_19 AC 975 ms
225,636 KB
testcase_20 AC 40 ms
53,760 KB
testcase_21 AC 40 ms
53,376 KB
testcase_22 AC 1,011 ms
225,760 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 40 ms
53,248 KB
testcase_27 AC 41 ms
53,120 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,999 ms
275,400 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, D = map(int, input().split())
S = defaultdict(int)
for i in range(1, N + 1):
    for j in range(1, N + 1):
        S[D + i * i - j * j] += 1
        
ans = 0
for i in range(1, N + 1):
    for j in range(1, N + 1):
        ans += S[i * i + j * j]
print(ans)
0