結果

問題 No.800 四平方定理
ユーザー mlihua09mlihua09
提出日時 2020-08-29 19:42:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 189,960 KB
最終ジャッジ日時 2024-11-14 17:39:41
合計ジャッジ時間 7,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
185,712 KB
testcase_01 AC 114 ms
186,848 KB
testcase_02 AC 115 ms
187,184 KB
testcase_03 AC 114 ms
187,608 KB
testcase_04 AC 114 ms
187,544 KB
testcase_05 AC 119 ms
187,716 KB
testcase_06 AC 114 ms
186,824 KB
testcase_07 AC 122 ms
187,000 KB
testcase_08 AC 113 ms
186,760 KB
testcase_09 AC 120 ms
186,700 KB
testcase_10 AC 201 ms
188,604 KB
testcase_11 AC 203 ms
188,896 KB
testcase_12 AC 213 ms
188,700 KB
testcase_13 AC 192 ms
188,888 KB
testcase_14 AC 195 ms
189,092 KB
testcase_15 AC 208 ms
189,872 KB
testcase_16 AC 197 ms
188,372 KB
testcase_17 AC 197 ms
188,336 KB
testcase_18 AC 220 ms
189,796 KB
testcase_19 AC 234 ms
189,960 KB
testcase_20 AC 105 ms
183,436 KB
testcase_21 AC 104 ms
183,792 KB
testcase_22 AC 223 ms
188,396 KB
testcase_23 AC 302 ms
188,956 KB
testcase_24 AC 272 ms
187,840 KB
testcase_25 AC 311 ms
189,788 KB
testcase_26 AC 113 ms
182,772 KB
testcase_27 AC 112 ms
183,020 KB
testcase_28 AC 274 ms
188,192 KB
testcase_29 AC 291 ms
188,564 KB
testcase_30 AC 274 ms
188,960 KB
testcase_31 AC 267 ms
187,992 KB
testcase_32 AC 285 ms
189,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, D = map(int, input().split())

X = [0] * (8 * 10 ** 6 + 1)
Y = [0] * (8 * 10 ** 6 + 1)
ans = 0

for i in range(1, N + 1):
    
    for j in range(1, N + 1):
        
        X[i ** 2 + j ** 2] += 1
        if i ** 2 - j ** 2 + D > 0:
            Y[i ** 2 - j ** 2 + D] += 1
        
for i in range(8 * 10 ** 6 + 1):
    ans += X[i] * Y[i]
print(ans)
0