結果

問題 No.800 四平方定理
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-17 22:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,238 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 260,584 KB
最終ジャッジ日時 2024-07-08 00:54:08
合計ジャッジ時間 16,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,072 KB
testcase_01 AC 71 ms
71,424 KB
testcase_02 AC 64 ms
68,864 KB
testcase_03 AC 67 ms
70,016 KB
testcase_04 AC 61 ms
68,992 KB
testcase_05 AC 63 ms
70,016 KB
testcase_06 AC 69 ms
73,728 KB
testcase_07 AC 72 ms
73,984 KB
testcase_08 AC 74 ms
77,440 KB
testcase_09 AC 67 ms
71,552 KB
testcase_10 AC 525 ms
215,584 KB
testcase_11 AC 552 ms
216,100 KB
testcase_12 AC 578 ms
237,648 KB
testcase_13 AC 461 ms
179,844 KB
testcase_14 AC 526 ms
215,968 KB
testcase_15 AC 596 ms
237,324 KB
testcase_16 AC 527 ms
216,072 KB
testcase_17 AC 530 ms
216,116 KB
testcase_18 AC 709 ms
241,964 KB
testcase_19 AC 690 ms
242,100 KB
testcase_20 AC 41 ms
53,376 KB
testcase_21 AC 40 ms
53,376 KB
testcase_22 AC 635 ms
237,620 KB
testcase_23 AC 1,213 ms
259,272 KB
testcase_24 AC 1,048 ms
259,032 KB
testcase_25 AC 1,238 ms
258,976 KB
testcase_26 AC 39 ms
53,376 KB
testcase_27 AC 39 ms
53,632 KB
testcase_28 AC 1,028 ms
259,192 KB
testcase_29 AC 1,113 ms
258,744 KB
testcase_30 AC 1,009 ms
259,080 KB
testcase_31 AC 930 ms
260,584 KB
testcase_32 AC 1,080 ms
258,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = defaultdict(int)
for x in range(1, n+1):
    for y in range(x, n+1):
        if y == x:
            cnt[x**2+y**2] += 1
        else:
            cnt[x**2+y**2] += 2

ans = 0
for w in range(1, n+1):
    tmp = w**2+d
    for z in range(1, n+1):
        if tmp <= z**2:
            break
        ans += cnt[tmp - z**2]
print(ans)
0