結果

問題 No.489 株に挑戦
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 14:47:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 418 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-09-21 14:47:18
合計ジャッジ時間 5,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
76,524 KB
testcase_01 AC 97 ms
76,420 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 43 ms
53,996 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 43 ms
54,272 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 44 ms
54,016 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 47 ms
54,272 KB
testcase_14 AC 44 ms
54,272 KB
testcase_15 AC 86 ms
76,416 KB
testcase_16 AC 117 ms
76,308 KB
testcase_17 AC 96 ms
76,896 KB
testcase_18 AC 96 ms
76,388 KB
testcase_19 AC 93 ms
76,420 KB
testcase_20 AC 116 ms
76,328 KB
testcase_21 AC 87 ms
76,268 KB
testcase_22 AC 79 ms
76,544 KB
testcase_23 AC 109 ms
76,408 KB
testcase_24 AC 129 ms
76,532 KB
testcase_25 AC 44 ms
54,016 KB
testcase_26 AC 111 ms
76,656 KB
testcase_27 AC 154 ms
77,808 KB
testcase_28 AC 41 ms
54,016 KB
testcase_29 AC 42 ms
53,632 KB
testcase_30 AC 118 ms
76,592 KB
testcase_31 AC 119 ms
78,720 KB
testcase_32 AC 106 ms
76,440 KB
testcase_33 AC 136 ms
76,628 KB
testcase_34 AC 114 ms
76,488 KB
testcase_35 AC 108 ms
76,724 KB
testcase_36 AC 99 ms
76,728 KB
testcase_37 AC 100 ms
76,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,D,K=map(int,input().split())
a=(0,0,0)
from collections import deque
q=deque()
for i in range(1):
  x=int(input())
  while len(q)>0 and q[-1][0]>x:
    q.pop()
  q.append((x,i))
for i in range(1,n):
  x=int(input())
  y,j=q[0]
  a=min(a,(-(x-y),j,i))
  while len(q)>0 and q[-1][0]>x:
    q.pop()
  q.append((x,i))
  if q[0][1]==i-D:
    q.popleft()
p1,p2,p3=a
if p1!=0:
  print(-p1*K)
  print(p2,p3)
else:
  print(0)
0