結果

問題 No.489 株に挑戦
ユーザー amowweeamowwee
提出日時 2017-02-25 00:17:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 547 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 26,944 KB
最終ジャッジ日時 2025-01-03 02:09:08
合計ジャッジ時間 41,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 30 ms
17,056 KB
testcase_03 AC 32 ms
24,192 KB
testcase_04 AC 31 ms
17,060 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 30 ms
16,932 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 AC 33 ms
24,704 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 31 ms
17,060 KB
testcase_29 AC 32 ms
21,888 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int, input().split(" "))
x_list = [int(input()) for i in range(N)]
max_day, x_max = max(enumerate(x_list[0:D+1]), key = lambda x:x[1])
dif_max = x_max - x_list[0]
buy_day = 0
sell_day = max_day


for i in range(1, N-1):
    max_day, x_max = max(enumerate(x_list[i:min(D+i, N)]), key = lambda x:x[1])
    
    if x_max - x_list[i] > dif_max:
        dif_max = x_max - x_list[i]
        buy_day = i
        sell_day = max_day
    
if dif_max <= 0:
    print(0)
else:
    print("{0:d}\n{1:d} {2:d}".format(dif_max * K, buy_day, sell_day))
0