結果

問題 No.989 N×Mマス計算(K以上)
ユーザー KodaiKodai
提出日時 2020-04-17 16:43:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,004 KB
最終ジャッジ日時 2024-10-03 10:23:57
合計ジャッジ時間 12,052 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
44,404 KB
testcase_01 AC 456 ms
44,404 KB
testcase_02 AC 452 ms
44,184 KB
testcase_03 AC 453 ms
44,408 KB
testcase_04 AC 447 ms
44,276 KB
testcase_05 AC 430 ms
44,408 KB
testcase_06 AC 434 ms
44,016 KB
testcase_07 AC 444 ms
44,276 KB
testcase_08 AC 439 ms
44,664 KB
testcase_09 AC 432 ms
44,396 KB
testcase_10 AC 625 ms
45,688 KB
testcase_11 AC 597 ms
46,956 KB
testcase_12 AC 657 ms
46,964 KB
testcase_13 AC 516 ms
45,684 KB
testcase_14 AC 735 ms
49,004 KB
testcase_15 AC 523 ms
44,268 KB
testcase_16 AC 567 ms
45,036 KB
testcase_17 AC 486 ms
45,912 KB
testcase_18 AC 606 ms
44,400 KB
testcase_19 AC 560 ms
47,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M, K = list(map(int, input().split()))
op, *B_list = input().split()
B_array = np.array(list(map(int, B_list)))
B_array.sort()

if op == "+":
    count = 0
    A_array = np.sort(np.array([int(input()) for i in range(N)]))[::-1]
    start = 0
    m = 0
    loop = True
    while loop:
        for n in range(start, N+1):
            if n == N or m == M:
                count += (n-start)*(M-m)
                loop = False
                break
            if B_array[m]+A_array[n] < K:
                if start == n:
                    m += 1
                    break
                else:
                    count += (n-start)*(M-m)
                    start = n
                    m += 1
                    break
    print(count)
else:
    count = 0
    A_array = np.sort(np.array([int(input()) for i in range(N)]))[::-1]
    start = 0
    m = 0
    loop = True
    while loop:
        for n in range(start, N+1):
            if n == N or m == M:
                count += (n-start)*(M-m)
                loop = False
                break
            if B_array[m]*A_array[n] < K:
                if start == n:
                    m += 1
                    break
                else:
                    count += (n-start)*(M-m)
                    start = n
                    m += 1
                    break

    print(count)
0