結果

問題 No.489 株に挑戦
ユーザー amowweeamowwee
提出日時 2017-02-25 00:54:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 558 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-11 00:14:57
合計ジャッジ時間 6,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
19,200 KB
testcase_01 AC 165 ms
13,184 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 40 ms
11,008 KB
testcase_16 AC 256 ms
14,464 KB
testcase_17 AC 69 ms
11,264 KB
testcase_18 AC 165 ms
12,800 KB
testcase_19 AC 131 ms
12,544 KB
testcase_20 AC 255 ms
14,592 KB
testcase_21 AC 87 ms
11,776 KB
testcase_22 AC 50 ms
11,136 KB
testcase_23 AC 172 ms
12,928 KB
testcase_24 AC 292 ms
15,104 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int, input().split(" "))
x_list = [int(input()) for i in range(N)]
dif_max = 0
max_day = -1

for i in range(N-1):
    if max_day < i:
        max_day, x_max = max(enumerate(x_list[i:min(i+D+1,N)]), key = lambda x: x[1])
        max_day += i
    elif i + D < N and x_list[i+D] > x_max:
        x_max = x_list[i+D]
        max_day = i+D
    
    if x_max - x_list[i] > dif_max:
        buy_day = i
        sell_day = max_day
        dif_max = x_max - x_list[i]

if dif_max > 0:
    print(dif_max * K)
    print(buy_day, sell_day)
else:
    print(0)
0