結果

問題 No.989 N×Mマス計算(K以上)
ユーザー GrayCoderGrayCoder
提出日時 2020-02-14 22:30:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,396 KB
最終ジャッジ日時 2024-10-06 12:53:54
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 126 ms
16,680 KB
testcase_11 AC 111 ms
18,776 KB
testcase_12 AC 162 ms
18,896 KB
testcase_13 AC 68 ms
16,012 KB
testcase_14 AC 224 ms
21,396 KB
testcase_15 AC 81 ms
13,056 KB
testcase_16 AC 134 ms
15,600 KB
testcase_17 AC 66 ms
16,032 KB
testcase_18 AC 97 ms
13,184 KB
testcase_19 AC 98 ms
19,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N, M, K = map(int, input().split())
    B = input().split()
    A = [int(input()) for _ in [0] * N]

    b = sorted(map(int, B[1:]))
    A.sort()
    ans = 0
    if B[0] == '+':
        for a in A:
            ans += M - bisect_left(b, K - a)
    else:
        for a in A:
            ans += M - bisect_left(b, K / a)
    print(ans)


main()
0