結果

問題 No.489 株に挑戦
ユーザー tentententen
提出日時 2023-01-30 19:48:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 1,000 ms
コード長 2,663 bytes
コンパイル時間 2,702 ms
コンパイル使用メモリ 95,308 KB
実行使用メモリ 49,256 KB
最終ジャッジ日時 2024-06-30 05:09:11
合計ジャッジ時間 9,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
48,360 KB
testcase_01 AC 196 ms
48,144 KB
testcase_02 AC 75 ms
38,136 KB
testcase_03 AC 78 ms
38,448 KB
testcase_04 AC 44 ms
37,060 KB
testcase_05 AC 62 ms
38,376 KB
testcase_06 AC 66 ms
38,376 KB
testcase_07 AC 64 ms
38,164 KB
testcase_08 AC 63 ms
38,176 KB
testcase_09 AC 71 ms
38,236 KB
testcase_10 AC 87 ms
38,816 KB
testcase_11 AC 68 ms
38,308 KB
testcase_12 AC 66 ms
38,068 KB
testcase_13 AC 80 ms
38,760 KB
testcase_14 AC 80 ms
38,360 KB
testcase_15 AC 124 ms
41,524 KB
testcase_16 AC 227 ms
49,196 KB
testcase_17 AC 177 ms
42,908 KB
testcase_18 AC 195 ms
46,984 KB
testcase_19 AC 188 ms
47,480 KB
testcase_20 AC 235 ms
49,068 KB
testcase_21 AC 167 ms
45,564 KB
testcase_22 AC 149 ms
42,148 KB
testcase_23 AC 210 ms
47,328 KB
testcase_24 AC 241 ms
49,256 KB
testcase_25 AC 45 ms
36,900 KB
testcase_26 AC 200 ms
48,656 KB
testcase_27 AC 281 ms
46,584 KB
testcase_28 AC 82 ms
38,220 KB
testcase_29 AC 47 ms
37,156 KB
testcase_30 AC 255 ms
49,096 KB
testcase_31 AC 232 ms
48,772 KB
testcase_32 AC 196 ms
46,744 KB
testcase_33 AC 237 ms
48,676 KB
testcase_34 AC 226 ms
48,948 KB
testcase_35 AC 187 ms
47,352 KB
testcase_36 AC 150 ms
42,724 KB
testcase_37 AC 205 ms
47,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int d = sc.nextInt();
        long k = sc.nextInt();
        PriorityQueue<Stock> queue = new PriorityQueue<>();
        queue.add(new Stock(0, sc.nextInt()));
        int max = 0;
        int left = 0;
        int right = 0;
        for (int i = 1; i < n; i++) {
            int x = sc.nextInt();
            while (i - queue.peek().day > d) {
                queue.poll();
            }
            int diff = x - queue.peek().amount;
            if (max < diff) {
                max = diff;
                left = queue.peek().day;
                right = i;
            }
            queue.add(new Stock(i, x));
        }
        System.out.println(max * k);
        if (max > 0) {
            System.out.println(left + " " + right);
        }
    }
    
    static class Stock implements Comparable<Stock> {
        int day;
        int amount;
        
        public Stock(int day, int amount) {
            this.day = day;
            this.amount = amount;
        }
        
        public int compareTo(Stock another) {
            if (amount == another.amount) {
                return day - another.day;
            } else {
                return amount - another.amount;
            }
        }
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0