結果

問題 No.800 四平方定理
ユーザー kurimupykurimupy
提出日時 2020-06-16 00:12:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 191,256 KB
最終ジャッジ日時 2024-07-03 11:40:53
合計ジャッジ時間 7,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
187,948 KB
testcase_01 AC 149 ms
188,932 KB
testcase_02 AC 148 ms
189,744 KB
testcase_03 AC 148 ms
189,664 KB
testcase_04 AC 149 ms
188,420 KB
testcase_05 AC 149 ms
189,444 KB
testcase_06 AC 147 ms
189,648 KB
testcase_07 AC 142 ms
188,780 KB
testcase_08 AC 146 ms
187,860 KB
testcase_09 AC 152 ms
188,696 KB
testcase_10 AC 209 ms
190,388 KB
testcase_11 AC 208 ms
190,484 KB
testcase_12 AC 227 ms
189,572 KB
testcase_13 AC 200 ms
190,488 KB
testcase_14 AC 204 ms
189,412 KB
testcase_15 AC 210 ms
189,492 KB
testcase_16 AC 204 ms
190,068 KB
testcase_17 AC 204 ms
189,496 KB
testcase_18 AC 232 ms
190,576 KB
testcase_19 AC 226 ms
189,356 KB
testcase_20 AC 142 ms
184,232 KB
testcase_21 AC 140 ms
184,996 KB
testcase_22 AC 225 ms
190,004 KB
testcase_23 AC 291 ms
190,564 KB
testcase_24 AC 257 ms
191,060 KB
testcase_25 AC 291 ms
189,432 KB
testcase_26 AC 136 ms
184,748 KB
testcase_27 AC 139 ms
183,736 KB
testcase_28 AC 272 ms
190,264 KB
testcase_29 AC 281 ms
189,288 KB
testcase_30 AC 269 ms
189,540 KB
testcase_31 AC 255 ms
189,504 KB
testcase_32 AC 269 ms
191,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#4平方定理
N, D = map(int, input().split())
d = [0 for i in range(8*10**6+2)]
e = [0 for i in range(8*10**6+2)]
for i in range(1, N+1):
    for j in range(1, N+1):
        d[i**2+j**2] += 1
for i in range(1, N+1):
    for j in range(1, N+1):
        e[min(8*10**6+1, max(0,i**2-j**2+D))] += 1
ans = 0
for i in range(1, 8*10**6+1):
    ans += d[i]*e[i]
print(ans)

0