結果

問題 No.989 N×Mマス計算(K以上)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 17:32:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,444 KB
最終ジャッジ日時 2024-06-11 08:19:59
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 24 ms
10,880 KB
testcase_10 AC 210 ms
16,656 KB
testcase_11 AC 146 ms
17,764 KB
testcase_12 AC 236 ms
17,952 KB
testcase_13 AC 82 ms
15,796 KB
testcase_14 AC 339 ms
20,444 KB
testcase_15 AC 111 ms
13,312 KB
testcase_16 AC 196 ms
15,276 KB
testcase_17 AC 78 ms
15,664 KB
testcase_18 AC 168 ms
13,312 KB
testcase_19 AC 150 ms
18,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,m,k=map(int,input().split())
l=list(map(str,input().split()))
a=[int(input()) for _ in range(n)]
b=[]
for i in range(1,m+1):
    b.append(int(l[i]))
a.sort();b.sort()
ans=0
if l[0]=='*':
    for i in a:
        ans+=m-bisect.bisect_left(b,k/i)
else:
    for i in a:
        ans+=m-bisect.bisect_left(b,k-i)
print(ans)
0