結果

問題 No.800 四平方定理
ユーザー MShinyaMShinya
提出日時 2019-03-18 01:06:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 254 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,400 KB
最終ジャッジ日時 2024-07-08 07:55:19
合計ジャッジ時間 21,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
73,088 KB
testcase_01 AC 131 ms
73,192 KB
testcase_02 AC 125 ms
73,216 KB
testcase_03 AC 123 ms
73,216 KB
testcase_04 AC 123 ms
73,112 KB
testcase_05 AC 125 ms
73,088 KB
testcase_06 AC 138 ms
72,960 KB
testcase_07 AC 132 ms
73,216 KB
testcase_08 AC 141 ms
73,216 KB
testcase_09 AC 132 ms
72,960 KB
testcase_10 AC 1,294 ms
73,088 KB
testcase_11 AC 1,415 ms
73,080 KB
testcase_12 AC 1,458 ms
72,960 KB
testcase_13 AC 1,296 ms
73,088 KB
testcase_14 AC 1,402 ms
73,148 KB
testcase_15 AC 1,459 ms
73,088 KB
testcase_16 AC 1,377 ms
73,216 KB
testcase_17 AC 1,365 ms
72,960 KB
testcase_18 AC 1,518 ms
72,960 KB
testcase_19 AC 1,514 ms
73,216 KB
testcase_20 AC 96 ms
72,960 KB
testcase_21 AC 98 ms
73,088 KB
testcase_22 AC 1,526 ms
73,216 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 139 ms
72,960 KB
testcase_27 AC 127 ms
73,088 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
P = [i * i for i in range(1, N + 1)]
A = [0] * 8000001
for i in P:
    for j in P:
        tmp = i - j + D
        if tmp > 0:
            A[tmp] += 1
ans = 0
for i in P:
    for j in P:
        ans += A[i + j]
print(ans)
0