結果

問題 No.989 N×Mマス計算(K以上)
ユーザー MineMine
提出日時 2020-09-01 19:48:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,280 KB
最終ジャッジ日時 2024-04-30 16:58:16
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 214 ms
16,104 KB
testcase_11 AC 204 ms
17,880 KB
testcase_12 AC 273 ms
17,016 KB
testcase_13 AC 98 ms
16,040 KB
testcase_14 AC 380 ms
19,280 KB
testcase_15 AC 122 ms
12,800 KB
testcase_16 AC 216 ms
14,956 KB
testcase_17 AC 93 ms
16,028 KB
testcase_18 AC 175 ms
13,312 KB
testcase_19 AC 163 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n, m, k = map(int, input().split())
a = input().split()
op = a[0]
a = list(map(int, a[1:]))
b = [int(input()) for _ in range(n)]
b.sort(reverse = True)

if op == "+":
    for i in range(n):
        b[i] = k-b[i]
else:
    for i in range(n):
        b[i] = k/b[i]

ans = 0
for i in range(m):
    bi = bisect.bisect_right(b, a[i])
    ans += bi
print(ans)
0