結果

問題 No.489 株に挑戦
ユーザー tnishinagatnishinaga
提出日時 2017-02-27 04:27:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,228 KB
最終ジャッジ日時 2024-06-11 17:51:21
合計ジャッジ時間 14,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 794 ms
22,048 KB
testcase_01 AC 331 ms
17,792 KB
testcase_02 AC 25 ms
11,008 KB
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 26 ms
11,008 KB
testcase_10 AC 26 ms
11,008 KB
testcase_11 AC 26 ms
11,008 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 26 ms
11,008 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 46 ms
11,520 KB
testcase_16 AC 804 ms
23,352 KB
testcase_17 AC 79 ms
11,392 KB
testcase_18 AC 348 ms
18,016 KB
testcase_19 AC 251 ms
16,384 KB
testcase_20 AC 819 ms
23,296 KB
testcase_21 AC 120 ms
13,824 KB
testcase_22 AC 56 ms
12,160 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 26 ms
11,008 KB
testcase_26 TLE -
testcase_27 AC 956 ms
15,232 KB
testcase_28 AC 25 ms
10,880 KB
testcase_29 AC 25 ms
10,880 KB
testcase_30 TLE -
testcase_31 AC 352 ms
25,088 KB
testcase_32 AC 387 ms
18,864 KB
testcase_33 AC 968 ms
25,228 KB
testcase_34 AC 767 ms
23,064 KB
testcase_35 AC 201 ms
15,616 KB
testcase_36 AC 78 ms
12,800 KB
testcase_37 AC 369 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

def problem_input():
    ndk = input().split()
    n = int(ndk[0], 10)
    d = int(ndk[1], 10)
    k = int(ndk[2], 10)
    xlist = [int(input(), 10) for i in range(n)]
    return n, d, k, xlist

def test_input():
    n = 7
    d = 2
    k = 1000
    xlist = [1,3,5,1,4,4,7]
    return n, d, k, xlist

def test_input1():
    n = 5
    d = 4
    k = 100
    xlist = [1,2,1,2,1]
    return n, d, k, xlist

def test_input2():
    n = 5
    d = 1
    k = 100
    xlist = [5,4,3,3,1]
    return n, d, k, xlist

# main
n,d,k,xlist = problem_input()
# n,d,k,xlist = test_input1()

sorted_list = [(xlist[0], 0)]
diff_max = 0
for i in range(1, n):
    while (i - sorted_list[0][1]) > d:
        sorted_list = sorted_list[1:]
    if diff_max < (xlist[i] - sorted_list[0][0]):
        diff_max = xlist[i] - sorted_list[0][0]
        result = (sorted_list[0][1], i)
    bisect.insort(sorted_list, (xlist[i], i))


print(diff_max * k)
if diff_max != 0:
    print("{0} {1}".format(result[0], result[1]))
0