結果

問題 No.489 株に挑戦
ユーザー amowweeamowwee
提出日時 2017-02-25 00:37:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 448 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2025-01-03 02:18:14
合計ジャッジ時間 41,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 32 ms
15,616 KB
testcase_03 AC 30 ms
24,192 KB
testcase_04 AC 32 ms
15,616 KB
testcase_05 AC 33 ms
15,488 KB
testcase_06 AC 33 ms
15,488 KB
testcase_07 AC 31 ms
22,272 KB
testcase_08 AC 29 ms
15,488 KB
testcase_09 AC 29 ms
24,320 KB
testcase_10 AC 29 ms
15,360 KB
testcase_11 AC 27 ms
21,376 KB
testcase_12 AC 30 ms
15,488 KB
testcase_13 AC 31 ms
24,704 KB
testcase_14 AC 29 ms
15,488 KB
testcase_15 AC 64 ms
25,344 KB
testcase_16 TLE -
testcase_17 AC 78 ms
16,000 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 376 ms
15,872 KB
testcase_23 AC 843 ms
24,832 KB
testcase_24 TLE -
testcase_25 AC 30 ms
24,832 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 32 ms
15,488 KB
testcase_29 AC 30 ms
21,120 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)]
dif_max = 0
buy_day = 0
sell_day = 0

for i in range(N-1):
    max_day, x_max = max(enumerate(x_list[i:min(i+D+1,N)]), key = lambda x: x[1])
    max_day += i
    
    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