結果

問題 No.800 四平方定理
ユーザー Ryushi-techRyushi-tech
提出日時 2020-08-28 09:00:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 218,112 KB
最終ジャッジ日時 2024-11-09 01:05:51
合計ジャッジ時間 10,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
216,064 KB
testcase_01 AC 174 ms
216,448 KB
testcase_02 AC 173 ms
216,576 KB
testcase_03 AC 174 ms
216,448 KB
testcase_04 AC 171 ms
216,576 KB
testcase_05 AC 171 ms
216,832 KB
testcase_06 AC 172 ms
217,088 KB
testcase_07 AC 172 ms
216,832 KB
testcase_08 AC 171 ms
216,960 KB
testcase_09 AC 173 ms
216,832 KB
testcase_10 AC 250 ms
217,984 KB
testcase_11 AC 260 ms
217,856 KB
testcase_12 AC 257 ms
218,112 KB
testcase_13 AC 254 ms
217,728 KB
testcase_14 AC 263 ms
217,728 KB
testcase_15 AC 262 ms
217,984 KB
testcase_16 AC 263 ms
217,600 KB
testcase_17 AC 265 ms
217,600 KB
testcase_18 AC 257 ms
217,728 KB
testcase_19 AC 260 ms
217,856 KB
testcase_20 AC 162 ms
208,000 KB
testcase_21 AC 162 ms
207,872 KB
testcase_22 AC 264 ms
217,856 KB
testcase_23 AC 358 ms
217,984 KB
testcase_24 AC 363 ms
217,728 KB
testcase_25 AC 364 ms
217,856 KB
testcase_26 AC 162 ms
207,872 KB
testcase_27 AC 161 ms
208,000 KB
testcase_28 AC 363 ms
217,984 KB
testcase_29 AC 356 ms
218,112 KB
testcase_30 AC 356 ms
217,856 KB
testcase_31 AC 345 ms
217,856 KB
testcase_32 AC 365 ms
217,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, D = map(int, input().split())
lim = 2 * 10 ** 7
base = lim // 2
res = [0] * lim

for i in range(1, n + 1):
    for j in range(1, n + 1):
        res[i ** 2 + j ** 2 + base] += 1

cnt = 0
for i in range(1, n + 1):
    for j in range(1, n + 1):
        d = D - i ** 2 + j ** 2
        cnt += res[base + d]
print(cnt)
0