結果

問題 No.989 N×Mマス計算(K以上)
ユーザー ThetaTheta
提出日時 2022-10-21 13:52:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,524 KB
最終ジャッジ日時 2024-06-30 23:54:53
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 201 ms
16,116 KB
testcase_11 AC 136 ms
17,256 KB
testcase_12 AC 204 ms
16,508 KB
testcase_13 AC 73 ms
15,668 KB
testcase_14 AC 287 ms
18,524 KB
testcase_15 AC 106 ms
12,544 KB
testcase_16 AC 167 ms
14,984 KB
testcase_17 AC 68 ms
15,664 KB
testcase_18 AC 172 ms
13,056 KB
testcase_19 AC 126 ms
17,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from operator import add, mul, sub, truediv


def main():
    N, M, K = map(int, input().split())

    op, *B = input().split()
    B = list(map(int, B))
    B.sort()
    A = [int(input()) for _ in range(N)]
    A.sort()

    match op:
        case "+":
            op_func = sub
        case "*":
            op_func = truediv
        case _:
            raise ValueError

    ctr = 0
    b_idx = None
    for row, a_elm in enumerate(A):
        b_idx = bisect_left(B, op_func(K, a_elm), hi=b_idx)
        ctr += len(B) - b_idx
    print(ctr)


if __name__ == "__main__":
    main()
0