結果

問題 No.800 四平方定理
ユーザー hedwig100hedwig100
提出日時 2020-04-24 10:44:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 368 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 167,664 KB
最終ジャッジ日時 2024-10-15 01:46:10
合計ジャッジ時間 40,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
43,660 KB
testcase_01 AC 559 ms
43,816 KB
testcase_02 AC 546 ms
43,664 KB
testcase_03 AC 555 ms
44,076 KB
testcase_04 AC 559 ms
43,556 KB
testcase_05 AC 555 ms
43,704 KB
testcase_06 AC 547 ms
44,320 KB
testcase_07 AC 546 ms
44,020 KB
testcase_08 AC 542 ms
44,188 KB
testcase_09 AC 545 ms
44,216 KB
testcase_10 AC 1,222 ms
104,060 KB
testcase_11 AC 1,289 ms
111,864 KB
testcase_12 AC 1,262 ms
110,736 KB
testcase_13 AC 1,088 ms
106,992 KB
testcase_14 AC 1,139 ms
111,692 KB
testcase_15 AC 1,306 ms
111,488 KB
testcase_16 AC 1,135 ms
112,400 KB
testcase_17 AC 1,131 ms
112,436 KB
testcase_18 AC 1,371 ms
112,132 KB
testcase_19 AC 1,346 ms
112,128 KB
testcase_20 AC 533 ms
43,556 KB
testcase_21 AC 529 ms
43,680 KB
testcase_22 AC 1,325 ms
112,672 KB
testcase_23 TLE -
testcase_24 AC 1,780 ms
167,164 KB
testcase_25 TLE -
testcase_26 AC 561 ms
43,564 KB
testcase_27 AC 536 ms
43,664 KB
testcase_28 AC 1,732 ms
166,752 KB
testcase_29 TLE -
testcase_30 AC 1,751 ms
166,740 KB
testcase_31 AC 1,666 ms
157,720 KB
testcase_32 AC 1,851 ms
167,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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