結果

問題 No.989 N×Mマス計算(K以上)
ユーザー neterukunneterukun
提出日時 2020-02-14 21:42:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-04-16 01:41:07
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 46 ms
52,480 KB
testcase_03 AC 45 ms
52,096 KB
testcase_04 AC 45 ms
51,968 KB
testcase_05 AC 46 ms
52,352 KB
testcase_06 AC 44 ms
52,352 KB
testcase_07 AC 45 ms
52,480 KB
testcase_08 AC 45 ms
52,480 KB
testcase_09 AC 45 ms
52,864 KB
testcase_10 AC 139 ms
82,504 KB
testcase_11 AC 138 ms
85,376 KB
testcase_12 AC 140 ms
84,096 KB
testcase_13 AC 108 ms
83,200 KB
testcase_14 AC 160 ms
87,040 KB
testcase_15 AC 111 ms
78,208 KB
testcase_16 AC 123 ms
80,896 KB
testcase_17 AC 115 ms
83,456 KB
testcase_18 AC 121 ms
77,824 KB
testcase_19 AC 135 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


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

a = sorted(a)
ans = 0
if op[0] == "+":
    for num in b:
        ans += n - bisect.bisect_left(a, k - num)
else:
    for num in b:
        ans += n - bisect.bisect_left(a, -((-k) // num))
print(ans)
0