結果

問題 No.989 N×Mマス計算(K以上)
ユーザー stngstng
提出日時 2022-08-17 11:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 90,912 KB
最終ジャッジ日時 2024-10-04 10:43:37
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,748 KB
testcase_01 AC 36 ms
53,212 KB
testcase_02 AC 37 ms
52,464 KB
testcase_03 AC 37 ms
53,312 KB
testcase_04 AC 34 ms
52,948 KB
testcase_05 AC 35 ms
53,756 KB
testcase_06 AC 35 ms
53,224 KB
testcase_07 AC 36 ms
53,728 KB
testcase_08 AC 35 ms
53,336 KB
testcase_09 AC 37 ms
53,268 KB
testcase_10 AC 136 ms
85,104 KB
testcase_11 AC 111 ms
88,836 KB
testcase_12 AC 118 ms
87,084 KB
testcase_13 AC 87 ms
86,060 KB
testcase_14 AC 142 ms
90,912 KB
testcase_15 AC 93 ms
77,868 KB
testcase_16 AC 103 ms
81,840 KB
testcase_17 AC 89 ms
85,712 KB
testcase_18 AC 106 ms
76,992 KB
testcase_19 AC 113 ms
89,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,m,k = map(int,input().split())
opb = input().split()
op = opb[0]
b = []
for i in range(1,m+1):
    b.append(int(opb[i]))

a = [int(input()) for i in range(n)]
a.sort()
b.sort()

ans = 0

for i in range(n):
    if op == "+":
        ans += m-bisect.bisect_left(b,k-a[i])
    else:
        ans += m-bisect.bisect_left(b,(k+a[i]-1)//a[i])
    #print(n,ans)

print(ans)
0