結果

問題 No.489 株に挑戦
ユーザー RIGIHRIGIH
提出日時 2017-06-28 20:13:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 58,716 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-10-04 14:54:29
合計ジャッジ時間 5,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 AC 2 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,820 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include <iostream>
#include <cstring>
#include <math.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)

int main(){
	
	//while(1){
		
		int n,d,k;
		cin>>n>>d>>k;

		int *x;
		x=new int[n];
		rep(i,n){
			cin>>x[i];
		}
		int max=0;
		int i1,j1;

		rep(i,n-1){
			rep(j,d){
				if( x[i+j+1]-x[i] > max){
					max=x[i+j+1]-x[i];
					i1=i;j1=j;
				}
			}
		}
		if(max==0){
			cout<<0<<endl;
			return 0;
		}
		//cout<<max<<endl;
		long long MAX=max*k;
		cout<<MAX<<endl;
		cout<<i1<<" "<<i1+j1+1;


		
	//}

	
	return 0;
}
0