結果

問題 No.989 N×Mマス計算(K以上)
ユーザー 💕💖💞💕💖💞
提出日時 2020-04-10 13:18:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,216 KB
最終ジャッジ日時 2024-09-14 23:19:16
合計ジャッジ時間 15,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
43,948 KB
testcase_01 AC 535 ms
44,080 KB
testcase_02 AC 537 ms
43,824 KB
testcase_03 AC 526 ms
43,820 KB
testcase_04 AC 541 ms
44,208 KB
testcase_05 AC 532 ms
44,336 KB
testcase_06 AC 537 ms
44,280 KB
testcase_07 AC 534 ms
43,568 KB
testcase_08 AC 529 ms
43,816 KB
testcase_09 AC 536 ms
43,692 KB
testcase_10 AC 726 ms
46,764 KB
testcase_11 AC 720 ms
47,288 KB
testcase_12 AC 782 ms
47,016 KB
testcase_13 AC 607 ms
45,480 KB
testcase_14 AC 888 ms
50,216 KB
testcase_15 AC 619 ms
44,200 KB
testcase_16 AC 975 ms
45,748 KB
testcase_17 AC 611 ms
45,620 KB
testcase_18 AC 662 ms
43,956 KB
testcase_19 AC 682 ms
47,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import bisect
n, m, k = map(int, input().split())

x1 = list(input().split())

op = x1.pop(0)

b_arr = list(map(lambda x:int(x), x1))
b_arr.sort()
a_arr = [int(input()) for i in range(n)]
a_arr.sort()

cnt = 0
if op == '+':
    for b in b_arr:
        s = k-b
        idx = bisect.bisect_left(a_arr, s)
        cnt += n -idx
else:
    for b in b_arr:
        s = k/b
        idx = bisect.bisect_left(a_arr, s)
        cnt += n -idx
print(cnt)
0