結果

問題 No.989 N×Mマス計算(K以上)
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-11 23:03:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 90,184 KB
最終ジャッジ日時 2024-06-11 23:03:08
合計ジャッジ時間 2,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 39 ms
53,356 KB
testcase_03 AC 39 ms
52,228 KB
testcase_04 AC 38 ms
53,696 KB
testcase_05 AC 40 ms
52,552 KB
testcase_06 AC 39 ms
52,752 KB
testcase_07 AC 38 ms
53,424 KB
testcase_08 AC 39 ms
53,616 KB
testcase_09 AC 38 ms
53,180 KB
testcase_10 AC 139 ms
83,568 KB
testcase_11 AC 123 ms
88,392 KB
testcase_12 AC 135 ms
86,804 KB
testcase_13 AC 95 ms
85,068 KB
testcase_14 AC 159 ms
90,184 KB
testcase_15 AC 98 ms
77,768 KB
testcase_16 AC 122 ms
81,524 KB
testcase_17 AC 100 ms
84,620 KB
testcase_18 AC 119 ms
77,112 KB
testcase_19 AC 123 ms
88,488 KB
権限があれば一括ダウンロードができます

ソースコード

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()
res = 0
if op == '+':
    for a in A:
        t = bisect_left(B, k - a)
        res += m - t
else:
    for a in A:
        t = bisect_left(B, (k + a - 1) // a)
        res += m - t
print(res)
0