結果
問題 | No.489 株に挑戦 |
ユーザー | ciel |
提出日時 | 2017-02-26 20:53:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 465 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 32,000 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-11 16:50:41 |
合計ジャッジ時間 | 6,595 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 461 ms
5,376 KB |
testcase_20 | TLE | - |
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 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:21:31: warning: 's' may be used uninitialized [-Wmaybe-uninitialized] 21 | printf("%d\n%d %d\n",r*k,s,s+j); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:5:21: note: 's' was declared here 5 | int n,d,k,r,s; | ^ main.cpp:21:31: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized] 21 | printf("%d\n%d %d\n",r*k,s,s+j); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:5:19: note: 'r' was declared here 5 | int n,d,k,r,s; | ^
ソースコード
#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; } } }