結果

問題 No.989 N×Mマス計算(K以上)
ユーザー mlihua09mlihua09
提出日時 2020-09-01 18:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 89,700 KB
最終ジャッジ日時 2024-04-30 13:13:11
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,120 KB
testcase_01 AC 38 ms
53,816 KB
testcase_02 AC 40 ms
53,944 KB
testcase_03 AC 40 ms
52,772 KB
testcase_04 AC 38 ms
52,880 KB
testcase_05 AC 39 ms
52,704 KB
testcase_06 AC 38 ms
53,996 KB
testcase_07 AC 39 ms
52,740 KB
testcase_08 AC 39 ms
53,428 KB
testcase_09 AC 39 ms
53,428 KB
testcase_10 AC 127 ms
83,628 KB
testcase_11 AC 114 ms
87,676 KB
testcase_12 AC 125 ms
86,204 KB
testcase_13 AC 93 ms
84,332 KB
testcase_14 AC 144 ms
89,700 KB
testcase_15 AC 95 ms
77,296 KB
testcase_16 AC 103 ms
80,776 KB
testcase_17 AC 94 ms
85,172 KB
testcase_18 AC 108 ms
76,268 KB
testcase_19 AC 115 ms
87,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, M, K = map(int, input().split())

from bisect import bisect_left

B = input().split()
op = B[0]
B = list(map(int, B[1:]))
B.sort()
ans = 0
if op == '+':
    for i in range(N):
        a = int(input())
        
        ans += M - bisect_left(B, K - a)
    
else:
    for i in range(N):
        
        a = int(input())
        ans += M - bisect_left(B, (K - 1) // a + 1)
        
print(ans)
0