結果

問題 No.989 N×Mマス計算(K以上)
ユーザー H20H20
提出日時 2021-07-15 11:16:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 89,456 KB
最終ジャッジ日時 2024-07-04 11:31:54
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,992 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,980 KB
testcase_03 AC 38 ms
52,912 KB
testcase_04 AC 36 ms
52,968 KB
testcase_05 AC 39 ms
53,964 KB
testcase_06 AC 37 ms
52,500 KB
testcase_07 AC 38 ms
53,792 KB
testcase_08 AC 38 ms
52,812 KB
testcase_09 AC 40 ms
53,416 KB
testcase_10 AC 131 ms
83,460 KB
testcase_11 AC 117 ms
87,492 KB
testcase_12 AC 130 ms
86,016 KB
testcase_13 AC 93 ms
84,296 KB
testcase_14 AC 161 ms
89,456 KB
testcase_15 AC 98 ms
77,696 KB
testcase_16 AC 116 ms
81,196 KB
testcase_17 AC 91 ms
84,840 KB
testcase_18 AC 118 ms
79,416 KB
testcase_19 AC 116 ms
87,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,K = map(int,input().split())
B = list(input().split())
OP = B[0]
B = list(map(int, B[1:]))
A = []
for _ in range(N):
    A.append(int(input()))
A.sort()
B.sort()
ANS = 0
if OP=='+':
    for a in A:
        ANS += M-bisect.bisect_left(B,K-a)
else:
    SB = sum(B)
    for a in A:
        ANS += M-bisect.bisect_left(B,K/a)
print(ANS)
0