結果
問題 | No.489 株に挑戦 |
ユーザー | ciel |
提出日時 | 2017-02-27 00:55:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 32,000 KB |
実行使用メモリ | 10,268 KB |
最終ジャッジ日時 | 2024-06-11 16:58:56 |
合計ジャッジ時間 | 3,781 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
5,248 KB |
testcase_01 | AC | 777 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,948 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,948 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,948 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | AC | 160 ms
6,944 KB |
testcase_19 | AC | 444 ms
6,940 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:20:31: warning: 's' may be used uninitialized [-Wmaybe-uninitialized] 20 | printf("%lld\n%d %d\n",(long long)r*k,s,s+j); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:5:21: note: 's' was declared here 5 | int n,d,k,r,s; | ^ main.cpp:20:48: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized] 20 | printf("%lld\n%d %d\n",(long long)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=x[i]; if(e>n-i)e=n-i; for(int j=0;j<e;j++)if(f<x[i+j])f=x[i+j]; if(r<f-x[i])r=f-x[i],s=i; } if(r==0)puts("0"); else{ int e=d+1; if(e>n-s)e=n-s; for(int j=0;j<e;j++)if(r==x[s+j]-x[s]){ printf("%lld\n%d %d\n",(long long)r*k,s,s+j); break; } } }