結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tpynerivertpyneriver
提出日時 2020-02-14 21:39:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 84,908 KB
最終ジャッジ日時 2024-10-06 11:00:19
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,396 KB
testcase_01 AC 41 ms
53,568 KB
testcase_02 AC 38 ms
52,792 KB
testcase_03 AC 38 ms
53,288 KB
testcase_04 AC 38 ms
52,440 KB
testcase_05 AC 38 ms
52,336 KB
testcase_06 AC 37 ms
52,648 KB
testcase_07 AC 42 ms
52,280 KB
testcase_08 AC 37 ms
52,472 KB
testcase_09 AC 39 ms
53,036 KB
testcase_10 AC 102 ms
80,856 KB
testcase_11 AC 90 ms
84,164 KB
testcase_12 AC 95 ms
82,992 KB
testcase_13 AC 72 ms
76,940 KB
testcase_14 AC 109 ms
84,908 KB
testcase_15 AC 65 ms
74,424 KB
testcase_16 AC 86 ms
79,540 KB
testcase_17 AC 70 ms
76,348 KB
testcase_18 AC 74 ms
76,088 KB
testcase_19 AC 88 ms
84,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, M, K = map(int, readline().split())
op, *A = readline().strip().split()
A = [int(a) for a in A]
A.sort(reverse = True)
B = [int(readline()) for _ in range(N)]
res = 0
if op == '+':
    for b in B:
        ok = -1
        ng = M
        while abs(ok-ng)>1:
            med = (ok+ng)//2
            if A[med]+b >= K:
                ok = med
            else:
                ng = med
        res += 1+ok
else:
    for b in B:
        ok = -1
        ng = M
        while abs(ok-ng)>1:
            med = (ok+ng)//2
            if A[med]*b >= K:
                ok = med
            else:
                ng = med
        res += 1+ok
print(res)
0