結果

問題 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  
実行時間 348 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,152 KB
最終ジャッジ日時 2024-11-20 13:52:59
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 208 ms
15,976 KB
testcase_11 AC 191 ms
17,756 KB
testcase_12 AC 249 ms
17,016 KB
testcase_13 AC 92 ms
16,040 KB
testcase_14 AC 348 ms
19,152 KB
testcase_15 AC 115 ms
12,672 KB
testcase_16 AC 205 ms
14,840 KB
testcase_17 AC 88 ms
16,036 KB
testcase_18 AC 176 ms
13,180 KB
testcase_19 AC 156 ms
18,048 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