結果

問題 No.800 四平方定理
ユーザー hedwig100hedwig100
提出日時 2020-04-24 10:52:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 323 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 168,004 KB
最終ジャッジ日時 2024-10-15 01:47:06
合計ジャッジ時間 22,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,884 KB
testcase_01 AC 517 ms
45,524 KB
testcase_02 AC 520 ms
44,756 KB
testcase_03 AC 519 ms
44,888 KB
testcase_04 AC 519 ms
44,764 KB
testcase_05 AC 521 ms
45,404 KB
testcase_06 AC 522 ms
46,232 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 533 ms
45,784 KB
testcase_10 AC 619 ms
105,032 KB
testcase_11 AC 634 ms
113,024 KB
testcase_12 AC 652 ms
111,804 KB
testcase_13 AC 634 ms
108,008 KB
testcase_14 AC 627 ms
113,116 KB
testcase_15 AC 634 ms
112,872 KB
testcase_16 AC 628 ms
113,612 KB
testcase_17 AC 638 ms
113,868 KB
testcase_18 AC 654 ms
113,372 KB
testcase_19 AC 647 ms
113,868 KB
testcase_20 AC 526 ms
44,244 KB
testcase_21 RE -
testcase_22 AC 643 ms
113,920 KB
testcase_23 AC 762 ms
168,004 KB
testcase_24 AC 738 ms
167,780 KB
testcase_25 AC 756 ms
167,408 KB
testcase_26 AC 518 ms
44,376 KB
testcase_27 RE -
testcase_28 AC 747 ms
167,348 KB
testcase_29 AC 742 ms
167,372 KB
testcase_30 AC 723 ms
167,204 KB
testcase_31 AC 718 ms
158,984 KB
testcase_32 AC 746 ms
167,612 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())
    Sub = (square[:,None] - square[None,:]).flatten() + d
    Sub = Sub[Sub >= 0]
    ans = Add[Sub].sum()
    print(ans)
if __name__ =='__main__':
    main() 
0