結果

問題 No.800 四平方定理
ユーザー neterukunneterukun
提出日時 2019-03-18 22:01:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 304,408 KB
最終ジャッジ日時 2024-07-19 05:34:39
合計ジャッジ時間 28,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
69,248 KB
testcase_01 AC 80 ms
75,392 KB
testcase_02 AC 74 ms
71,296 KB
testcase_03 AC 77 ms
74,240 KB
testcase_04 AC 74 ms
71,296 KB
testcase_05 AC 77 ms
73,216 KB
testcase_06 AC 84 ms
78,208 KB
testcase_07 AC 79 ms
73,472 KB
testcase_08 AC 83 ms
77,184 KB
testcase_09 AC 82 ms
75,264 KB
testcase_10 AC 1,176 ms
249,416 KB
testcase_11 AC 1,282 ms
245,668 KB
testcase_12 AC 1,279 ms
245,236 KB
testcase_13 AC 1,284 ms
258,360 KB
testcase_14 AC 1,321 ms
245,928 KB
testcase_15 AC 1,358 ms
245,644 KB
testcase_16 AC 1,354 ms
246,236 KB
testcase_17 AC 1,329 ms
246,204 KB
testcase_18 AC 1,323 ms
246,072 KB
testcase_19 AC 1,290 ms
246,204 KB
testcase_20 AC 43 ms
53,248 KB
testcase_21 AC 42 ms
53,248 KB
testcase_22 AC 1,313 ms
246,192 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 43 ms
54,496 KB
testcase_27 AC 42 ms
54,252 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,d = map(int,input().split())

half = defaultdict(int)
for i in range(1,n+1):
    for j in range(1,n+1):
        half[i*i+j*j] +=1

ans = 0
for i in range(1,n+1):
    for j in range(1,n+1):
        num = d+i*i-j*j
        if half[num]:
            ans += half[num]
print(ans)
0