結果

問題 No.489 株に挑戦
ユーザー 6soukiti296soukiti29
提出日時 2017-03-20 18:08:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 334 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-07-08 10:49:45
合計ジャッジ時間 5,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
10,624 KB
testcase_01 AC 147 ms
11,648 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 25 ms
10,496 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 37 ms
10,752 KB
testcase_16 AC 231 ms
11,776 KB
testcase_17 AC 59 ms
10,624 KB
testcase_18 AC 149 ms
11,008 KB
testcase_19 AC 122 ms
11,136 KB
testcase_20 AC 253 ms
12,800 KB
testcase_21 AC 82 ms
11,392 KB
testcase_22 AC 45 ms
10,624 KB
testcase_23 AC 167 ms
10,752 KB
testcase_24 AC 275 ms
12,416 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 263 ms
10,752 KB
testcase_27 AC 260 ms
10,624 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 26 ms
10,624 KB
testcase_30 AC 274 ms
13,824 KB
testcase_31 AC 341 ms
15,232 KB
testcase_32 AC 152 ms
10,880 KB
testcase_33 AC 260 ms
12,544 KB
testcase_34 AC 230 ms
11,008 KB
testcase_35 AC 105 ms
11,136 KB
testcase_36 AC 60 ms
11,136 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = list(map(int,input().split()))
i = 0
j = 0
A = [0,0,0]
J = [10**6]
while i < N:
	
	l = int(input())
	j = J[0]
	if l > j:
		if A[2] < l - j:
			A = [i,len(J),l - j]

		J.append(l)
		if len(J) > D:
			J.pop(0)
			j = min(J)
			J = J[J.index(j):]
			
	else:
		J = [l]
	i = i + 1
print(A[2]*K)
if A[2] != 0:
	print(A[0]-A[1],A[0])
0