結果

問題 No.489 株に挑戦
ユーザー qibqib
提出日時 2023-02-17 10:44:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-07-19 06:21:42
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
77,696 KB
testcase_01 AC 133 ms
77,312 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 48 ms
53,632 KB
testcase_13 AC 42 ms
53,888 KB
testcase_14 AC 42 ms
54,144 KB
testcase_15 AC 79 ms
73,984 KB
testcase_16 AC 181 ms
77,952 KB
testcase_17 AC 101 ms
77,056 KB
testcase_18 AC 134 ms
77,184 KB
testcase_19 AC 121 ms
77,184 KB
testcase_20 AC 205 ms
77,568 KB
testcase_21 AC 97 ms
76,672 KB
testcase_22 AC 93 ms
76,672 KB
testcase_23 AC 163 ms
77,312 KB
testcase_24 AC 343 ms
77,440 KB
testcase_25 AC 44 ms
53,888 KB
testcase_26 AC 287 ms
77,952 KB
testcase_27 WA -
testcase_28 AC 47 ms
53,504 KB
testcase_29 AC 42 ms
53,376 KB
testcase_30 AC 376 ms
77,696 KB
testcase_31 AC 447 ms
78,464 KB
testcase_32 AC 162 ms
77,184 KB
testcase_33 AC 275 ms
77,696 KB
testcase_34 AC 210 ms
77,568 KB
testcase_35 AC 120 ms
76,928 KB
testcase_36 AC 90 ms
76,288 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, d, k = map(int, input().split())
x = [int(input()) for _ in range(n)]

idx = deque()
dq = deque()
for i in range(n):
  while len(dq) > 0 and x[i] <= x[dq[-1]]:
    dq.pop()

  dq.append(i)
  idx.append(dq[0])

  if len(dq) and dq[0] <= i + 1 - (d + 1):
    dq.popleft()

ans = 0
l = None
r = None
for i in range(n):
  score = (x[i] - x[idx[i]]) * k
  if score > ans:
    r = i
    l = idx[i]
    ans = score

if ans > 0:
  print(ans)
  print(f"{l} {r}")
else:
  print("0")
0