結果

問題 No.489 株に挑戦
ユーザー htensaihtensai
提出日時 2020-02-12 10:24:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 965 ms / 1,000 ms
コード長 1,765 bytes
コンパイル時間 2,666 ms
コンパイル使用メモリ 83,684 KB
実行使用メモリ 72,952 KB
最終ジャッジ日時 2024-12-31 11:13:33
合計ジャッジ時間 22,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 727 ms
61,924 KB
testcase_01 AC 644 ms
61,748 KB
testcase_02 AC 143 ms
54,672 KB
testcase_03 AC 163 ms
55,204 KB
testcase_04 AC 139 ms
54,144 KB
testcase_05 AC 165 ms
54,948 KB
testcase_06 AC 169 ms
55,044 KB
testcase_07 AC 173 ms
54,820 KB
testcase_08 AC 168 ms
54,940 KB
testcase_09 AC 171 ms
55,260 KB
testcase_10 AC 169 ms
55,124 KB
testcase_11 AC 176 ms
54,832 KB
testcase_12 AC 171 ms
55,264 KB
testcase_13 AC 172 ms
55,004 KB
testcase_14 AC 170 ms
55,180 KB
testcase_15 AC 277 ms
59,564 KB
testcase_16 AC 789 ms
68,432 KB
testcase_17 AC 322 ms
59,460 KB
testcase_18 AC 692 ms
61,680 KB
testcase_19 AC 582 ms
61,792 KB
testcase_20 AC 876 ms
69,020 KB
testcase_21 AC 477 ms
59,712 KB
testcase_22 AC 328 ms
59,556 KB
testcase_23 AC 608 ms
59,328 KB
testcase_24 AC 965 ms
72,952 KB
testcase_25 AC 143 ms
54,232 KB
testcase_26 AC 652 ms
69,236 KB
testcase_27 AC 709 ms
64,832 KB
testcase_28 AC 160 ms
54,844 KB
testcase_29 AC 134 ms
53,856 KB
testcase_30 AC 914 ms
70,968 KB
testcase_31 AC 654 ms
69,100 KB
testcase_32 AC 661 ms
62,060 KB
testcase_33 AC 911 ms
71,328 KB
testcase_34 AC 822 ms
66,500 KB
testcase_35 AC 547 ms
61,216 KB
testcase_36 AC 369 ms
59,588 KB
testcase_37 AC 656 ms
61,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        long k = sc.nextInt();
        TreeSet<Stock> stocks = new TreeSet<>();
        Stock[] arr = new Stock[n];
        int max = 0;
        int left = 0;
        int right = 0;
        stocks.add(new Stock(-1, Integer.MAX_VALUE));
        for (int i = 0; i < n; i++) {
            arr[i] = new Stock(i, sc.nextInt());
            Stock target = stocks.first();
            if (max < arr[i].value - target.value) {
                max = arr[i].value - target.value;
                left = target.idx;
                right = i;
            }
            stocks.add(arr[i]);
            if (i - d >= 0) {
                stocks.remove(arr[i - d]);
            }
        }
        if (max == 0) {
            System.out.println(0);
        } else {
            System.out.println(max * k);
            System.out.println(left + " " + right);
        }
    }
    
    static class Stock implements Comparable<Stock> {
        int idx;
        int value;
        
        public Stock(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Stock another) {
            if (value == another.value) {
                return idx - another.idx;
            } else {
                return value - another.value;
            }
        }
        
        public int hashCode() {
            return idx;
        }
        
        public boolean equals(Object o) {
            Stock s = (Stock)o;
            return s.idx == idx && s.value == value;
        }
    }
}
0