結果
問題 | No.489 株に挑戦 |
ユーザー | mban |
提出日時 | 2017-04-29 04:36:14 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,339 bytes |
コンパイル時間 | 1,145 ms |
コンパイル使用メモリ | 113,180 KB |
実行使用メモリ | 30,020 KB |
最終ジャッジ日時 | 2024-09-13 19:03:49 |
合計ジャッジ時間 | 10,602 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 26 ms
23,984 KB |
testcase_03 | AC | 25 ms
23,980 KB |
testcase_04 | AC | 25 ms
26,012 KB |
testcase_05 | AC | 25 ms
23,972 KB |
testcase_06 | AC | 25 ms
23,844 KB |
testcase_07 | AC | 26 ms
25,888 KB |
testcase_08 | AC | 26 ms
24,088 KB |
testcase_09 | AC | 26 ms
26,012 KB |
testcase_10 | AC | 25 ms
25,884 KB |
testcase_11 | AC | 26 ms
25,980 KB |
testcase_12 | AC | 26 ms
26,012 KB |
testcase_13 | AC | 26 ms
23,984 KB |
testcase_14 | AC | 26 ms
24,084 KB |
testcase_15 | AC | 30 ms
23,856 KB |
testcase_16 | AC | 573 ms
23,836 KB |
testcase_17 | AC | 30 ms
23,776 KB |
testcase_18 | AC | 285 ms
25,972 KB |
testcase_19 | AC | 275 ms
23,988 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 26 ms
24,100 KB |
testcase_26 | WA | - |
testcase_27 | AC | 566 ms
26,012 KB |
testcase_28 | WA | - |
testcase_29 | AC | 25 ms
24,100 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; public class Program { public static void Main(string[] args) { new Magatro().Solve(); } } class Magatro { private int N, D, K; private int[] x; private void Scan() { string[] line = Console.ReadLine().Split(' '); N = int.Parse(line[0]); D = int.Parse(line[1]); K = int.Parse(line[2]); x = new int[N]; for (int i = 0; i < N; i++) { x[i] = int.Parse(Console.ReadLine()); } } public void Solve() { Scan(); int[] B = new int[(N + 1000 - 1) / 1000]; int[] index = new int[(N + 1000 - 1) / 1000]; int maxleft = -1; int maxright = -1; for (int i = 0; i < N; i++) { if (B[i / 1000] < x[i]) { B[i / 1000] = x[i]; index[i / 1000] = i; } } int max = 0; for (int i = 0; i < N - 1; i++) { int right = Math.Min(i + D, N - 1); int bleft = i / 1000; int bright = right / 1000; int m = 0; int rightindex = -1; for (int j = bleft; j < bright; j++) { if (m < B[j]) { m = B[j]; rightindex = index[j]; } } for (int j = i; j <= right && j % 1000 < 999; j++) { if (m < x[j]) { m = x[j]; rightindex = j; } } for (int j = right; j >= i && j % 1000 < 999; j--) { if (m < x[j]) { m = x[j]; rightindex = j; } } if (max < m - x[i]) { maxleft = i; maxright = rightindex; max = m - x[i]; } } Console.WriteLine(K * max); if (max == 0) { return; } Console.WriteLine($"{maxleft} {maxright}"); } }