結果

問題 No.489 株に挑戦
ユーザー htensaihtensai
提出日時 2020-02-12 10:24:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 875 ms / 1,000 ms
コード長 1,765 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 81,300 KB
実行使用メモリ 60,280 KB
最終ジャッジ日時 2024-07-20 00:21:36
合計ジャッジ時間 19,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 675 ms
50,556 KB
testcase_01 AC 600 ms
52,296 KB
testcase_02 AC 150 ms
42,300 KB
testcase_03 AC 152 ms
42,620 KB
testcase_04 AC 120 ms
41,592 KB
testcase_05 AC 149 ms
42,248 KB
testcase_06 AC 157 ms
42,080 KB
testcase_07 AC 151 ms
42,480 KB
testcase_08 AC 138 ms
42,752 KB
testcase_09 AC 152 ms
42,696 KB
testcase_10 AC 159 ms
42,744 KB
testcase_11 AC 150 ms
42,860 KB
testcase_12 AC 153 ms
42,504 KB
testcase_13 AC 162 ms
42,276 KB
testcase_14 AC 153 ms
42,604 KB
testcase_15 AC 261 ms
48,248 KB
testcase_16 AC 706 ms
59,280 KB
testcase_17 AC 311 ms
48,452 KB
testcase_18 AC 561 ms
50,488 KB
testcase_19 AC 547 ms
51,036 KB
testcase_20 AC 796 ms
58,756 KB
testcase_21 AC 430 ms
49,428 KB
testcase_22 AC 305 ms
48,824 KB
testcase_23 AC 589 ms
49,200 KB
testcase_24 AC 875 ms
60,280 KB
testcase_25 AC 129 ms
41,064 KB
testcase_26 AC 615 ms
58,628 KB
testcase_27 AC 644 ms
54,996 KB
testcase_28 AC 142 ms
42,460 KB
testcase_29 AC 125 ms
41,136 KB
testcase_30 AC 821 ms
59,920 KB
testcase_31 AC 591 ms
59,024 KB
testcase_32 AC 605 ms
49,788 KB
testcase_33 AC 816 ms
59,132 KB
testcase_34 AC 687 ms
56,104 KB
testcase_35 AC 443 ms
49,256 KB
testcase_36 AC 321 ms
49,552 KB
testcase_37 AC 588 ms
51,268 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