結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 45 ms
51,712 KB
testcase_03 AC 45 ms
51,840 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 44 ms
52,352 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 44 ms
51,840 KB
testcase_08 AC 45 ms
52,096 KB
testcase_09 AC 44 ms
52,352 KB
testcase_10 AC 143 ms
83,328 KB
testcase_11 AC 133 ms
87,296 KB
testcase_12 AC 140 ms
85,632 KB
testcase_13 AC 110 ms
83,968 KB
testcase_14 AC 160 ms
88,960 KB
testcase_15 AC 111 ms
77,568 KB
testcase_16 AC 123 ms
80,640 KB
testcase_17 AC 114 ms
84,992 KB
testcase_18 AC 127 ms
76,672 KB
testcase_19 AC 129 ms
87,680 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