結果

問題 No.489 株に挑戦
ユーザー cielciel
提出日時 2017-02-26 20:53:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 33,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-11 16:50:55
合計ジャッジ時間 11,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 791 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 72 ms
5,376 KB
testcase_19 AC 187 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 RE -
testcase_26 TLE -
testcase_27 AC 78 ms
5,376 KB
testcase_28 WA -
testcase_29 RE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:22:31: warning: 's' may be used uninitialized [-Wmaybe-uninitialized]
   22 |                         printf("%d\n%d %d\n",r*k,s,s+j);
      |                         ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:6:21: note: 's' was declared here
    6 |         int n,d,k,r,s;
      |                     ^
main.cpp:22:31: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized]
   22 |                         printf("%d\n%d %d\n",r*k,s,s+j);
      |                         ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:6:19: note: 'r' was declared here
    6 |         int n,d,k,r,s;
      |                   ^

ソースコード

diff #

#pragma GCC optimize("O3")
#include <stdio.h>
//yukicoder does not support C99
int x[100000];
int main(){
	int n,d,k,r,s;
	scanf("%d%d%d",&n,&d,&k);
	for(int i=0;i<n;i++)scanf("%d",x+i);
	for(int i=0;i<n;i++){
		int e=d+1;
		int f=0;
		if(e>n-i)e=n-i;
		for(int j=0;j<e;j++)if(f<x[i+j]-x[i])f=x[i+j]-x[i];
		if(r<f)r=f,s=i;
	}
	if(r==0)puts("0");
	else{
		int e=d+1;
		int f=0;
		if(e>n-s)e=n-s;
		for(int j=0;j<e;j++)if(r==x[s+j]-x[s]){
			printf("%d\n%d %d\n",r*k,s,s+j);
			break;
		}
	}
}
0