結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tter4tter4
提出日時 2020-02-15 00:24:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 92,512 KB
最終ジャッジ日時 2024-10-06 13:33:57
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,332 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 38 ms
53,140 KB
testcase_03 AC 39 ms
52,740 KB
testcase_04 AC 40 ms
52,284 KB
testcase_05 AC 38 ms
53,936 KB
testcase_06 AC 38 ms
53,072 KB
testcase_07 AC 39 ms
54,064 KB
testcase_08 AC 40 ms
53,688 KB
testcase_09 AC 39 ms
53,760 KB
testcase_10 AC 130 ms
85,276 KB
testcase_11 AC 119 ms
90,016 KB
testcase_12 AC 127 ms
88,404 KB
testcase_13 AC 97 ms
86,532 KB
testcase_14 AC 149 ms
92,512 KB
testcase_15 AC 96 ms
78,512 KB
testcase_16 AC 110 ms
82,844 KB
testcase_17 AC 100 ms
86,712 KB
testcase_18 AC 105 ms
77,156 KB
testcase_19 AC 118 ms
90,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import math

n, m, k = map(int, input().split())
opb = list(map(str, input().split()))
op = opb[0]
b = [int(x) for x in opb[1:]]
a = [int(input()) for _ in range(n)]

b.sort()

if op == '+':
    ans = 0
    for i in range(n):
        ans += m - bisect.bisect_left(b, k-a[i])
else:
    ans = 0
    for i in range(n):
        ans += m - bisect.bisect_left(b, math.ceil(k/a[i]))

print(ans)
0