結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tpynerivertpyneriver
提出日時 2020-02-14 21:34:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 420 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-10-06 10:51:51
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,600 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 AC 43 ms
55,936 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 43 ms
55,296 KB
testcase_06 AC 41 ms
52,740 KB
testcase_07 AC 42 ms
54,528 KB
testcase_08 AC 43 ms
55,040 KB
testcase_09 AC 45 ms
56,192 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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
for b in B:
    ok = -1
    ng = M
    while abs(ok-ng)>1:
        med = (ok+ng)//2
        if eval(f'{A[med]}{op}{b}') >= K:
            ok = med
        else:
            ng = med
    res += 1+ok
print(res)
0