結果

問題 No.864 四方演算
ユーザー maspymaspy
提出日時 2020-01-07 02:04:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 576 ms / 1,000 ms
コード長 603 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,844 KB
最終ジャッジ日時 2024-11-23 00:31:44
合計ジャッジ時間 18,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
58,564 KB
testcase_01 AC 534 ms
58,572 KB
testcase_02 AC 533 ms
58,164 KB
testcase_03 AC 550 ms
58,140 KB
testcase_04 AC 576 ms
58,456 KB
testcase_05 AC 554 ms
58,180 KB
testcase_06 AC 540 ms
58,176 KB
testcase_07 AC 558 ms
58,260 KB
testcase_08 AC 555 ms
58,108 KB
testcase_09 AC 540 ms
58,020 KB
testcase_10 AC 539 ms
58,312 KB
testcase_11 AC 536 ms
58,684 KB
testcase_12 AC 535 ms
58,104 KB
testcase_13 AC 534 ms
58,492 KB
testcase_14 AC 535 ms
58,612 KB
testcase_15 AC 534 ms
58,292 KB
testcase_16 AC 534 ms
58,688 KB
testcase_17 AC 536 ms
58,844 KB
testcase_18 AC 537 ms
58,736 KB
testcase_19 AC 560 ms
58,676 KB
testcase_20 AC 556 ms
58,068 KB
testcase_21 AC 546 ms
58,836 KB
testcase_22 AC 554 ms
58,360 KB
testcase_23 AC 535 ms
58,100 KB
testcase_24 AC 540 ms
58,132 KB
testcase_25 AC 550 ms
58,424 KB
testcase_26 AC 558 ms
58,240 KB
testcase_27 AC 541 ms
58,468 KB
testcase_28 AC 537 ms
58,628 KB
testcase_29 AC 539 ms
58,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

# (a+c)(b+d) = K

import numpy as np

N,K = map(int,read().split())

x = np.arange(1, 10**6+10, dtype=np.int64)
div = x[K % x == 0]

div = np.union1d(div, K // div)

AC = div; BD = K // div

# N 以下という条件を反映させる
# a + c = AC
low_a = np.maximum(1,AC-N)
high_a = np.minimum(N,AC-1)
cnt_a = np.maximum(0,high_a - low_a + 1)

low_b = np.maximum(1,BD-N)
high_b = np.minimum(N,BD-1)
cnt_b = np.maximum(0,high_b - low_b + 1)

answer = (cnt_a * cnt_b).sum()
print(answer)
0