結果

問題 No.489 株に挑戦
ユーザー 6soukiti296soukiti29
提出日時 2017-03-20 17:40:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-07-05 03:24:12
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
10,752 KB
testcase_01 AC 161 ms
11,648 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 WA -
testcase_15 AC 41 ms
10,752 KB
testcase_16 AC 259 ms
11,520 KB
testcase_17 AC 63 ms
10,624 KB
testcase_18 AC 165 ms
10,880 KB
testcase_19 AC 135 ms
11,264 KB
testcase_20 AC 271 ms
12,672 KB
testcase_21 AC 87 ms
11,136 KB
testcase_22 WA -
testcase_23 AC 172 ms
10,624 KB
testcase_24 AC 312 ms
12,416 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 278 ms
10,496 KB
testcase_27 WA -
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 305 ms
13,568 KB
testcase_31 AC 339 ms
14,720 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 67 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(i)
		if len(J) > D:
			J.pop(0)
	else:
		J = [l]
	i = i + 1
print(A[2]*K)
if A[2] != 0:
	print(A[0]-A[1],A[0])
0