結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tamatotamato
提出日時 2020-02-14 22:11:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-10-06 12:15:07
合計ジャッジ時間 2,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 119 ms
83,808 KB
testcase_11 AC 112 ms
89,216 KB
testcase_12 AC 117 ms
87,168 KB
testcase_13 AC 83 ms
81,168 KB
testcase_14 AC 136 ms
91,392 KB
testcase_15 AC 92 ms
77,952 KB
testcase_16 AC 97 ms
80,908 KB
testcase_17 AC 86 ms
82,304 KB
testcase_18 AC 98 ms
76,868 KB
testcase_19 AC 110 ms
89,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from bisect import bisect_left
    input = sys.stdin.readline

    N, M, K = map(int, input().split())
    line = input().split()
    op = line[0]
    B = list(map(int, line[1:]))
    A = [0] * N
    for i in range(N):
        A[i] = int(input())
    A.sort()
    B.sort()

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


if __name__ == '__main__':
    main()
0