結果

問題 No.989 N×Mマス計算(K以上)
ユーザー brthyyjpbrthyyjp
提出日時 2020-02-14 21:43:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-10-06 11:05:35
合計ジャッジ時間 2,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 46 ms
52,608 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 42 ms
53,120 KB
testcase_09 AC 42 ms
52,608 KB
testcase_10 AC 146 ms
84,992 KB
testcase_11 AC 132 ms
89,472 KB
testcase_12 AC 143 ms
87,936 KB
testcase_13 AC 101 ms
85,888 KB
testcase_14 AC 169 ms
92,288 KB
testcase_15 AC 105 ms
78,804 KB
testcase_16 AC 119 ms
82,304 KB
testcase_17 AC 103 ms
86,504 KB
testcase_18 AC 127 ms
77,428 KB
testcase_19 AC 133 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
l = list(map(str, input().split()))
b = [int(l[i]) for i in range(1, m+1)]

op = l[0]
#print(op)
#rint(b)

a = [0]*n
for i in range(n):
    a[i] = int(input())

#print(a)
#print(b)
a.sort()
b.sort()
import bisect
import math
if op == '+':
    ans = 0
    for i in range(n):
        p = k -a[i]
        q = bisect.bisect_left(b, p)
        ans += m-q
else:
    ans = 0
    for i in range(n):
        p = math.ceil(k/a[i])
        q = bisect.bisect_left(b, p)
        ans += m-q
print(ans)
0