結果

問題 No.489 株に挑戦
ユーザー kjnhokjnho
提出日時 2017-02-25 01:13:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-06-11 03:37:18
合計ジャッジ時間 8,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
14,080 KB
testcase_01 WA -
testcase_02 AC 29 ms
11,264 KB
testcase_03 AC 29 ms
11,136 KB
testcase_04 AC 31 ms
11,136 KB
testcase_05 WA -
testcase_06 AC 31 ms
11,136 KB
testcase_07 AC 31 ms
11,264 KB
testcase_08 AC 29 ms
11,136 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 29 ms
11,136 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 30 ms
11,136 KB
testcase_13 WA -
testcase_14 AC 30 ms
11,136 KB
testcase_15 AC 40 ms
11,520 KB
testcase_16 AC 621 ms
15,104 KB
testcase_17 AC 60 ms
11,776 KB
testcase_18 AC 187 ms
12,928 KB
testcase_19 AC 198 ms
13,056 KB
testcase_20 AC 620 ms
15,232 KB
testcase_21 WA -
testcase_22 AC 50 ms
11,520 KB
testcase_23 AC 161 ms
13,312 KB
testcase_24 AC 742 ms
15,872 KB
testcase_25 AC 30 ms
11,136 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 32 ms
11,008 KB
testcase_29 AC 30 ms
11,136 KB
testcase_30 AC 280 ms
16,896 KB
testcase_31 AC 244 ms
16,640 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 63 ms
11,904 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy as dcopy
import bisect
def main():
    N,D,K = map(int, input().split())
    values = [int(input()) for i in range(N)]

    h_window = dcopy(values[:D])
    h_window.sort()

    minimum = min(values[:D])
    w_min_index = values[:D].index(minimum)
    min_index = values[:D].index(minimum)
    maximum = max(values[:D+1])
    max_index = values[:D+1].index(maximum)

    MAX = maximum - minimum

    for j in range(D+1, N):
        del h_window[bisect.bisect_left(h_window, values[j-D-1])]

        if len(h_window) == 0:
            w_min_index = j-1
        elif values[j-1] < h_window[0]:
            w_min_index = j-1

        bisect.insort(h_window, values[j-1])
        minimum = h_window[0]
        tmp = values[j] - minimum
        if tmp > MAX:
            MAX = tmp
            max_index = j
            min_index = w_min_index

    # print(MAX, min_index, max_index)

    if MAX <= 0:
        print(0)
    else:
        print(K*MAX)
        print(min_index, max_index)

if __name__ == "__main__":  # {{{
    try:
        import test
        test.test()
    except:
        main()  # }}}

 
0