結果

問題 No.800 四平方定理
ユーザー 910_sendai910_sendai
提出日時 2019-03-18 12:42:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 293 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,392 KB
最終ジャッジ日時 2024-07-18 06:33:40
合計ジャッジ時間 32,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
73,176 KB
testcase_01 AC 121 ms
73,224 KB
testcase_02 AC 107 ms
73,164 KB
testcase_03 AC 114 ms
73,220 KB
testcase_04 AC 111 ms
73,200 KB
testcase_05 AC 112 ms
73,196 KB
testcase_06 AC 123 ms
73,328 KB
testcase_07 AC 114 ms
73,232 KB
testcase_08 AC 124 ms
73,168 KB
testcase_09 AC 117 ms
73,172 KB
testcase_10 AC 1,090 ms
73,180 KB
testcase_11 AC 1,198 ms
73,236 KB
testcase_12 AC 1,278 ms
73,264 KB
testcase_13 AC 1,103 ms
73,264 KB
testcase_14 AC 1,187 ms
73,192 KB
testcase_15 AC 1,164 ms
73,300 KB
testcase_16 AC 1,164 ms
73,204 KB
testcase_17 AC 1,203 ms
73,248 KB
testcase_18 AC 1,186 ms
73,196 KB
testcase_19 AC 1,315 ms
73,240 KB
testcase_20 AC 82 ms
73,248 KB
testcase_21 AC 83 ms
73,196 KB
testcase_22 AC 1,247 ms
73,220 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 85 ms
73,176 KB
testcase_27 AC 84 ms
73,188 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,995 ms
73,236 KB
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
ans = 0
p = []
cnt =[0] * (8 * 10**6 + 1)
## x*x + y*y = s 
for i in range(1, N+1):
    p.append(i*i)

for z in p:
    for w in p:
        s = w - z + D
        if s >= 0:
            cnt[s] += 1

for x in p:
    for y in p:
        ans += cnt[x+y]

print(ans)
0