結果

問題 No.989 N×Mマス計算(K以上)
ユーザー イルカイルカ
提出日時 2024-06-11 04:58:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2025-01-03 10:48:18
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 45 ms
52,352 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 47 ms
52,480 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 47 ms
52,352 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 47 ms
52,480 KB
testcase_09 AC 46 ms
52,608 KB
testcase_10 AC 180 ms
86,016 KB
testcase_11 AC 190 ms
91,904 KB
testcase_12 AC 173 ms
89,728 KB
testcase_13 AC 137 ms
87,296 KB
testcase_14 AC 209 ms
93,952 KB
testcase_15 AC 126 ms
78,720 KB
testcase_16 AC 147 ms
83,072 KB
testcase_17 AC 136 ms
87,424 KB
testcase_18 AC 128 ms
77,440 KB
testcase_19 AC 170 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Bをソートして、行iについて(A_i)op(B_j)がK未満である最大のjを二分探索で求めればよさそう
# 条件を変形してB_j<K-A_iまたはB_j<K/A_iとしたほうがよさそう
from bisect import bisect_left
N, M, K = map(int, input().split())
l = input().split()
op, B = l[0],sorted(list(map(int,sorted(l[1:]))))
A = [int(input()) for _ in range(N)]
def invOp(a,b):
    return a-b if op=="+" else a/b
cnt = 0
for i in range(N):
    j = bisect_left(B, invOp(K,A[i]))
    cnt += len(B) - j
print(cnt)
0