結果

問題 No.989 N×Mマス計算(K以上)
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-21 10:11:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,696 KB
最終ジャッジ日時 2024-10-07 16:19:33
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 211 ms
16,776 KB
testcase_11 AC 153 ms
17,760 KB
testcase_12 AC 253 ms
18,044 KB
testcase_13 AC 89 ms
15,660 KB
testcase_14 AC 354 ms
20,696 KB
testcase_15 AC 124 ms
13,312 KB
testcase_16 AC 231 ms
15,444 KB
testcase_17 AC 86 ms
15,652 KB
testcase_18 AC 186 ms
13,312 KB
testcase_19 AC 152 ms
18,184 KB
権限があれば一括ダウンロードができます

ソースコード

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_left
if op=='+':
    cnt=n*m
    for i in range(n):
        cnt-=bisect_left(b,k-a[i])
    print(cnt)
else:
    cnt=n*m
    for i in range(n):
        cnt-=bisect_left(b,k/a[i])
    print(cnt)   
0