結果

問題 No.989 N×Mマス計算(K以上)
ユーザー flippergoflippergo
提出日時 2020-12-25 09:53:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-22 02:41:45
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
52,828 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 131 ms
83,200 KB
testcase_11 AC 130 ms
87,808 KB
testcase_12 AC 135 ms
86,144 KB
testcase_13 AC 90 ms
84,608 KB
testcase_14 AC 158 ms
89,984 KB
testcase_15 AC 103 ms
77,972 KB
testcase_16 AC 106 ms
81,024 KB
testcase_17 AC 95 ms
84,608 KB
testcase_18 AC 120 ms
77,312 KB
testcase_19 AC 125 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N,M,K = map(int,input().split())
B = list(input().split())
op = B.pop(0)
B = sorted(list(map(int,B)))
A = sorted([int(input()) for _ in range(N)])
if op=="+":
    cnt = 0
    for i in range(N):
        a = A[i]
        if a>=K:
            cnt += M
        else:
            ind = bisect_left(B,K-a)
            cnt += M-ind
else:
    cnt = 0
    for i in range(N):
        a = A[i]
        if a>=K:
            cnt += M
        else:
            ind = bisect_left(B,K//a+bool(K%a))
            cnt += M-ind
print(cnt)
0