<p>You are given an array of integers <code>nums</code><strong>(0-indexed)</strong> and an integer <code>k</code>.</p>
<p>The <strong>score</strong> of a subarray <code>(i, j)</code> is defined as <code>min(nums[i], nums[i+1], ..., nums[j]) * (j - i + 1)</code>. A <strong>good</strong> subarray is a subarray where <code>i <= k <= j</code>.</p>
<p>Return <em>the maximum possible <strong>score</strong> of a <strong>good</strong> subarray.</em></p>