結果

問題 No.989 N×Mマス計算(K以上)
ユーザー hir355hir355
提出日時 2020-02-14 21:34:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,376 KB
最終ジャッジ日時 2024-10-06 10:46:40
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n, m, k = map(int, input().split())
op, *b = input().split()
b = list(map(int, b))
a = [int(input()) for _ in range(n)]
a.sort()
b.sort()
ans = 0
if op == '+':
    for x in a:
        ans += m - bisect_left(b, k - x)
else:
    for x in a:
        ans += m - bisect_left(b, (k - 1) // x + 1)
print(ans)
0