結果

問題 No.800 四平方定理
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-13 21:20:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 308,812 KB
最終ジャッジ日時 2024-09-21 21:14:35
合計ジャッジ時間 20,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,044 KB
testcase_01 AC 74 ms
75,264 KB
testcase_02 AC 72 ms
71,424 KB
testcase_03 AC 71 ms
74,240 KB
testcase_04 AC 67 ms
71,168 KB
testcase_05 AC 70 ms
72,960 KB
testcase_06 AC 77 ms
77,824 KB
testcase_07 AC 70 ms
73,728 KB
testcase_08 AC 78 ms
77,824 KB
testcase_09 AC 74 ms
75,520 KB
testcase_10 AC 1,124 ms
258,492 KB
testcase_11 AC 1,227 ms
246,320 KB
testcase_12 AC 1,200 ms
259,496 KB
testcase_13 AC 1,193 ms
258,740 KB
testcase_14 AC 1,245 ms
246,320 KB
testcase_15 AC 1,398 ms
260,028 KB
testcase_16 AC 1,430 ms
246,724 KB
testcase_17 AC 1,341 ms
246,848 KB
testcase_18 AC 1,224 ms
246,328 KB
testcase_19 AC 1,213 ms
246,464 KB
testcase_20 AC 41 ms
53,376 KB
testcase_21 AC 41 ms
53,760 KB
testcase_22 AC 1,289 ms
246,472 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
54,236 KB
testcase_27 AC 42 ms
54,568 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())

V = defaultdict(int)
for y in range(1, N + 1):
    for z in range(1, N + 1):
        V[y**2 + z**2] += 1

ans = 0
for w in range(1, N + 1):
    for x in range(1, N + 1):
        E = w**2 + D - x**2
        ans += V[E]

print(ans)
0