結果

問題 No.489 株に挑戦
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-17 03:03:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 773 ms / 1,000 ms
コード長 711 bytes
コンパイル時間 5,193 ms
コンパイル使用メモリ 79,500 KB
実行使用メモリ 61,528 KB
最終ジャッジ日時 2024-07-20 00:13:10
合計ジャッジ時間 21,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 658 ms
59,680 KB
testcase_01 AC 548 ms
59,456 KB
testcase_02 AC 164 ms
55,092 KB
testcase_03 AC 169 ms
54,796 KB
testcase_04 AC 137 ms
54,008 KB
testcase_05 AC 167 ms
54,928 KB
testcase_06 AC 180 ms
55,120 KB
testcase_07 AC 181 ms
54,860 KB
testcase_08 AC 170 ms
54,640 KB
testcase_09 AC 183 ms
55,048 KB
testcase_10 AC 175 ms
54,916 KB
testcase_11 AC 170 ms
54,768 KB
testcase_12 AC 176 ms
54,900 KB
testcase_13 AC 177 ms
54,968 KB
testcase_14 AC 179 ms
54,744 KB
testcase_15 AC 266 ms
59,164 KB
testcase_16 AC 646 ms
59,620 KB
testcase_17 AC 321 ms
59,420 KB
testcase_18 AC 531 ms
61,528 KB
testcase_19 AC 528 ms
59,480 KB
testcase_20 AC 668 ms
59,884 KB
testcase_21 AC 427 ms
59,264 KB
testcase_22 AC 294 ms
59,444 KB
testcase_23 AC 587 ms
59,528 KB
testcase_24 AC 675 ms
59,564 KB
testcase_25 AC 147 ms
54,288 KB
testcase_26 AC 549 ms
58,752 KB
testcase_27 AC 589 ms
59,140 KB
testcase_28 AC 165 ms
54,564 KB
testcase_29 AC 143 ms
54,068 KB
testcase_30 AC 773 ms
59,744 KB
testcase_31 AC 581 ms
59,524 KB
testcase_32 AC 571 ms
59,632 KB
testcase_33 AC 715 ms
59,628 KB
testcase_34 AC 699 ms
59,796 KB
testcase_35 AC 454 ms
59,828 KB
testcase_36 AC 342 ms
59,720 KB
testcase_37 AC 568 ms
59,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No489{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int D = sc.nextInt();
		int K = sc.nextInt();
		int[] x = new int[N];
		for(int i = 0; i < N; i++){
			x[i] = sc.nextInt();
		}
		int[] q = new int[N];
		int h = 0, t = -1;
		int diff = 0, a = 0, b = 0;
		for(int i = 0; i < N; i++){
			while(t >= h && q[h] < i-D) ++h;
			if(t >= h && x[i]-x[q[h]] > diff){
				diff = x[i] - x[q[h]];
				a = q[h];
				b = i;
			}
			while(t >= h && x[q[t]] > x[i]){
				--t;
			}

			q[++t] = i;
		}
		if(diff == 0) System.out.println(0);
		else{
			System.out.println((long)K*diff);
			System.out.println(a + " " + b);
		}
	}
}
0