結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
73,176 KB
testcase_01 AC 119 ms
73,156 KB
testcase_02 AC 111 ms
73,152 KB
testcase_03 AC 112 ms
73,256 KB
testcase_04 AC 111 ms
73,220 KB
testcase_05 AC 113 ms
73,180 KB
testcase_06 AC 121 ms
73,152 KB
testcase_07 AC 119 ms
73,156 KB
testcase_08 AC 127 ms
73,176 KB
testcase_09 AC 128 ms
73,380 KB
testcase_10 AC 1,086 ms
73,328 KB
testcase_11 AC 1,259 ms
73,180 KB
testcase_12 AC 1,231 ms
73,224 KB
testcase_13 AC 1,137 ms
73,232 KB
testcase_14 AC 1,210 ms
73,228 KB
testcase_15 AC 1,335 ms
73,260 KB
testcase_16 AC 1,246 ms
73,300 KB
testcase_17 AC 1,224 ms
73,184 KB
testcase_18 AC 1,283 ms
73,304 KB
testcase_19 AC 1,352 ms
73,184 KB
testcase_20 AC 91 ms
73,236 KB
testcase_21 AC 90 ms
73,172 KB
testcase_22 AC 1,296 ms
73,216 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 87 ms
73,244 KB
testcase_27 AC 87 ms
73,336 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,945 ms
73,224 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
ans = 0
p = []
cnt =[0] * 8 * 10**6
## 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