結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 192 ms
15,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 73 ms
15,668 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 166 ms
14,852 KB
testcase_17 AC 68 ms
15,784 KB
testcase_18 AC 165 ms
12,928 KB
testcase_19 AC 124 ms
17,672 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_left(b, (k - 1) // a_y)
    print(c)
if __name__ == "__main__":
    main()
0