結果
問題 | No.489 株に挑戦 |
ユーザー | yun_app |
提出日時 | 2017-03-19 16:11:59 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,972 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 79,652 KB |
実行使用メモリ | 53,648 KB |
最終ジャッジ日時 | 2024-07-04 23:38:06 |
合計ジャッジ時間 | 8,094 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 349 ms
52,608 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 76 ms
37,876 KB |
testcase_03 | AC | 85 ms
38,280 KB |
testcase_04 | AC | 49 ms
36,996 KB |
testcase_05 | AC | 74 ms
37,780 KB |
testcase_06 | AC | 82 ms
38,092 KB |
testcase_07 | AC | 76 ms
38,004 KB |
testcase_08 | AC | 77 ms
37,884 KB |
testcase_09 | AC | 75 ms
38,000 KB |
testcase_10 | AC | 76 ms
38,412 KB |
testcase_11 | AC | 82 ms
38,152 KB |
testcase_12 | AC | 76 ms
38,132 KB |
testcase_13 | AC | 80 ms
38,044 KB |
testcase_14 | AC | 84 ms
38,172 KB |
testcase_15 | AC | 145 ms
41,488 KB |
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 | -- | - |
ソースコード
/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Main { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] line = br.readLine().split(" "); int N = Integer.parseInt(line[0]); int D = Integer.parseInt(line[1]); long K = Long.parseLong(line[2]); ArrayList<Long> map = new ArrayList<Long>(); for(int i=0;i<N;i++){ map.add(Long.parseLong(br.readLine())); } Ans ans = new Ans(); for(int i=0;i<N-D;i++){ Ans tmp = calc(map,i,i+D); if(tmp.getDiff()>ans.getDiff()){ ans = tmp; } } if(ans.getDiff()==0){ System.out.println(0); }else{ System.out.println(K*ans.getDiff()); System.out.println(ans.start + " " + ans.end); } } private static Ans calc(ArrayList<Long> map,int s,int d){ int min=Integer.MAX_VALUE,max=0; long min_c = Long.MAX_VALUE; long max_c = 0l; Ans ans = new Ans(); for(int i=s,size=map.size();i<=d&&i<size;i++){ long t = map.get(i); if(min_c > t){ min = i; min_c = t; } if(max_c < t){ max = i; max_c = t; ans.start = min; ans.start_c = min_c; ans.end = max; ans.end_c = max_c; } } return ans; } private static class Ans{ int start; long start_c; int end; long end_c; public long getDiff(){ return end_c-start_c; } } }