結果

問題 No.489 株に挑戦
ユーザー ciel
提出日時 2017-02-26 17:44:38
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 20,352 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-11 16:45:38
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1 TLE * 2 -- * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |         scanf("%d%d%d",&n,&d,&k);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
main.c:5:29: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         for(int i=0;i<n;i++)scanf("%d",x+i);
      |                             ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int n,d,k,x[100000],r,s,t;
int main(){
	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++)for(int j=0;j<=d;j++)if(i+j<n&&r<x[i+j]-x[i])r=x[i+j]-x[i],s=i,t=i+j;
	printf(r?"%d\n%d %d\n":"0\n",r*k,s,t);
}
0