結果

問題 No.989 N×Mマス計算(K以上)
ユーザー ntudantuda
提出日時 2024-01-01 20:31:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 86,956 KB
最終ジャッジ日時 2024-09-27 17:29:03
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,340 KB
testcase_01 AC 36 ms
52,472 KB
testcase_02 AC 34 ms
53,172 KB
testcase_03 AC 33 ms
53,312 KB
testcase_04 AC 34 ms
53,668 KB
testcase_05 AC 34 ms
53,844 KB
testcase_06 AC 33 ms
52,736 KB
testcase_07 AC 34 ms
54,296 KB
testcase_08 AC 35 ms
52,704 KB
testcase_09 AC 35 ms
52,612 KB
testcase_10 AC 110 ms
81,592 KB
testcase_11 AC 101 ms
85,452 KB
testcase_12 AC 110 ms
83,812 KB
testcase_13 AC 95 ms
82,772 KB
testcase_14 AC 148 ms
86,956 KB
testcase_15 AC 98 ms
77,784 KB
testcase_16 AC 107 ms
80,580 KB
testcase_17 AC 83 ms
82,716 KB
testcase_18 AC 96 ms
77,132 KB
testcase_19 AC 104 ms
85,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N,M,K = map(int,input().split())
op, *B = input().split()
B = sorted([int(s) for s in B])
A = [int(input()) for _ in range(N)]

ans = 0
for a in A:
    if op == "+":
        c = K - a
    else:
        c = - (-K // a)
    ans += M - bisect_left(B,c)
print(ans)
0