結果

問題 No.989 N×Mマス計算(K以上)
ユーザー rkyiolklo
提出日時 2020-04-21 10:07:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,696 KB
最終ジャッジ日時 2024-10-07 16:07:16
合計ジャッジ時間 3,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
c=list(map(str,input().split()))
a=[0]*(n)
for i in range(n):
    a[i]=int(input())
op=c[0]
b=[0]*m
for i in range(m):
    b[i]=int(c[i+1])
a.sort()
b.sort()
from bisect import bisect_right
if op=='+':
    cnt=0
    for i in range(n):
        cnt+=bisect_right(b,k-a[i])
    print(cnt)
else:
    cnt=0
    for i in range(n):
        cnt+=bisect_right(b,k//a[i])
    print(cnt) 
0