結果

問題 No.989 N×Mマス計算(K以上)
ユーザー s_shoheis_shohei
提出日時 2020-04-11 15:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-09-19 03:36:42
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 42 ms
52,864 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 145 ms
84,756 KB
testcase_11 AC 142 ms
88,864 KB
testcase_12 AC 143 ms
87,120 KB
testcase_13 AC 110 ms
86,144 KB
testcase_14 AC 181 ms
91,136 KB
testcase_15 AC 101 ms
78,464 KB
testcase_16 AC 120 ms
82,156 KB
testcase_17 AC 119 ms
86,016 KB
testcase_18 AC 113 ms
77,564 KB
testcase_19 AC 149 ms
89,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int, input().split())
tmp = list(map(str, input().split()))
a=[int(input()) for i in range(n)]

op=tmp[0]
b=[]
for num in tmp[1:]:
    b.append(int(num))

a.sort()
b.sort()

ans=0
import bisect
for i in b:
    if op=="*":
        thr=k/i
    else:
        thr=k-i

    ind = bisect.bisect_left(a,thr)
    ans+= (len(a) - ind)

print(ans)
0