結果

問題 No.800 四平方定理
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-17 22:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,810 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 259,140 KB
最終ジャッジ日時 2024-07-08 00:51:05
合計ジャッジ時間 23,812 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,432 KB
testcase_01 AC 66 ms
70,784 KB
testcase_02 AC 60 ms
68,096 KB
testcase_03 AC 63 ms
69,376 KB
testcase_04 AC 61 ms
68,096 KB
testcase_05 AC 62 ms
68,992 KB
testcase_06 AC 68 ms
73,344 KB
testcase_07 AC 70 ms
74,240 KB
testcase_08 AC 72 ms
77,056 KB
testcase_09 AC 65 ms
71,040 KB
testcase_10 AC 682 ms
221,292 KB
testcase_11 AC 754 ms
199,508 KB
testcase_12 AC 801 ms
218,332 KB
testcase_13 AC 662 ms
160,664 KB
testcase_14 AC 764 ms
199,512 KB
testcase_15 AC 814 ms
221,240 KB
testcase_16 AC 742 ms
199,528 KB
testcase_17 AC 753 ms
199,276 KB
testcase_18 AC 919 ms
246,496 KB
testcase_19 AC 899 ms
246,636 KB
testcase_20 AC 41 ms
53,248 KB
testcase_21 AC 39 ms
53,376 KB
testcase_22 AC 875 ms
221,032 KB
testcase_23 AC 1,810 ms
259,140 KB
testcase_24 AC 1,619 ms
258,936 KB
testcase_25 AC 1,770 ms
258,948 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 38 ms
53,376 KB
testcase_28 AC 1,578 ms
259,064 KB
testcase_29 AC 1,657 ms
259,068 KB
testcase_30 AC 1,488 ms
258,812 KB
testcase_31 AC 1,461 ms
258,072 KB
testcase_32 AC 1,630 ms
259,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, d = map(int, input().split())
a = []
for i in range(1, n+1):
    a.append(i**2)

cnt = defaultdict(int)
for x in a:
    for y in a:
        cnt[x+y] += 1

ans = 0
for w in a:
    for z in a:
        if w + d <= z:
            break
        else:
            ans += cnt[w+d-z]
print(ans)
0