結果

問題 No.989 N×Mマス計算(K以上)
ユーザー kimiyukikimiyuki
提出日時 2020-02-14 22:19:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,396 KB
最終ジャッジ日時 2024-04-16 02:30:30
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 35 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 201 ms
15,384 KB
testcase_11 AC 129 ms
17,304 KB
testcase_12 AC 207 ms
16,556 KB
testcase_13 AC 79 ms
15,792 KB
testcase_14 AC 290 ms
18,396 KB
testcase_15 AC 105 ms
12,596 KB
testcase_16 AC 180 ms
14,980 KB
testcase_17 AC 73 ms
15,660 KB
testcase_18 AC 176 ms
12,928 KB
testcase_19 AC 131 ms
17,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import bisect
def main():
    h, w, k = map(int, input().split())
    op, *b = input().split()
    b = list(map(int, b))
    a = [ int(input()) for _ in range(h) ]
    a.sort()
    b.sort()
    c = 0
    if op == '+':
        for a_y in a:
            c += w - bisect.bisect_left(b, k - a_y)
    elif op == '*':
        for a_y in a:
            c += w - bisect.bisect_right(b, (k - 1) // a_y)
    print(c)
if __name__ == "__main__":
    main()
0