結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 32 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 204 ms
14,992 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 78 ms
15,656 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 177 ms
14,588 KB
testcase_17 AC 73 ms
15,396 KB
testcase_18 AC 174 ms
12,800 KB
testcase_19 AC 131 ms
17,412 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 // a_y)
    print(c)
if __name__ == "__main__":
    main()
0