結果

問題 No.800 四平方定理
ユーザー hedwig100hedwig100
提出日時 2020-04-24 10:56:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 167,960 KB
最終ジャッジ日時 2024-10-15 01:47:46
合計ジャッジ時間 22,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
45,204 KB
testcase_01 AC 466 ms
45,868 KB
testcase_02 AC 470 ms
45,344 KB
testcase_03 AC 464 ms
45,352 KB
testcase_04 AC 469 ms
44,968 KB
testcase_05 AC 465 ms
45,104 KB
testcase_06 AC 468 ms
45,740 KB
testcase_07 AC 483 ms
45,352 KB
testcase_08 AC 482 ms
46,116 KB
testcase_09 AC 461 ms
45,740 KB
testcase_10 AC 635 ms
105,592 KB
testcase_11 AC 646 ms
112,744 KB
testcase_12 AC 622 ms
111,960 KB
testcase_13 AC 573 ms
108,012 KB
testcase_14 AC 647 ms
112,700 KB
testcase_15 AC 594 ms
112,848 KB
testcase_16 AC 631 ms
113,580 KB
testcase_17 AC 579 ms
113,636 KB
testcase_18 AC 587 ms
113,616 KB
testcase_19 AC 584 ms
113,760 KB
testcase_20 AC 474 ms
44,204 KB
testcase_21 AC 467 ms
44,200 KB
testcase_22 AC 574 ms
113,736 KB
testcase_23 AC 714 ms
167,500 KB
testcase_24 AC 689 ms
167,724 KB
testcase_25 AC 688 ms
167,196 KB
testcase_26 AC 472 ms
44,204 KB
testcase_27 AC 470 ms
44,340 KB
testcase_28 AC 659 ms
167,240 KB
testcase_29 AC 669 ms
167,240 KB
testcase_30 AC 684 ms
167,248 KB
testcase_31 AC 655 ms
158,880 KB
testcase_32 AC 680 ms
167,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
def main():
    n,d = map(int,input().split())
    square = np.arange(1,n + 1) ** 2
    Add = np.bincount(np.add.outer(square,square).flatten(),minlength = 10 ** 7)
    Sub = (square[:,None] - square[None,:]).flatten() + d
    Sub = Sub[Sub >= 0]
    ans = Add[Sub].sum()
    print(ans)
if __name__ =='__main__':
    main() 
0