結果

問題 No.989 N×Mマス計算(K以上)
ユーザー H20H20
提出日時 2021-07-15 11:13:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 89,300 KB
最終ジャッジ日時 2024-07-04 11:24:48
合計ジャッジ時間 2,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,264 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 38 ms
52,208 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 145 ms
83,456 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 95 ms
84,360 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 119 ms
80,768 KB
testcase_17 AC 97 ms
84,712 KB
testcase_18 AC 122 ms
79,308 KB
testcase_19 AC 123 ms
87,680 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