結果

問題 No.800 四平方定理
ユーザー Ryushi-techRyushi-tech
提出日時 2020-08-28 08:58:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 314 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,176 KB
最終ジャッジ日時 2024-11-09 01:05:06
合計ジャッジ時間 7,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
137,600 KB
testcase_01 AC 115 ms
138,624 KB
testcase_02 AC 114 ms
138,752 KB
testcase_03 AC 114 ms
138,880 KB
testcase_04 AC 117 ms
138,624 KB
testcase_05 AC 113 ms
138,496 KB
testcase_06 AC 114 ms
138,368 KB
testcase_07 AC 115 ms
138,752 KB
testcase_08 AC 115 ms
138,752 KB
testcase_09 AC 115 ms
138,624 KB
testcase_10 AC 198 ms
139,648 KB
testcase_11 AC 205 ms
139,648 KB
testcase_12 AC 203 ms
139,264 KB
testcase_13 AC 199 ms
139,648 KB
testcase_14 AC 203 ms
139,648 KB
testcase_15 AC 204 ms
139,776 KB
testcase_16 AC 203 ms
139,648 KB
testcase_17 AC 209 ms
139,520 KB
testcase_18 AC 207 ms
139,648 KB
testcase_19 AC 203 ms
139,648 KB
testcase_20 AC 101 ms
129,792 KB
testcase_21 AC 102 ms
130,048 KB
testcase_22 AC 205 ms
139,648 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 102 ms
130,048 KB
testcase_27 AC 103 ms
130,048 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, D = map(int, input().split())
lim = 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