結果
問題 | No.489 株に挑戦 |
ユーザー | hedwig100 |
提出日時 | 2020-06-05 20:54:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 24,704 KB |
最終ジャッジ日時 | 2024-05-09 18:43:19 |
合計ジャッジ時間 | 6,391 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 32 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 32 ms
10,624 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 31 ms
10,624 KB |
testcase_26 | AC | 265 ms
14,592 KB |
testcase_27 | AC | 273 ms
14,976 KB |
testcase_28 | AC | 30 ms
10,752 KB |
testcase_29 | AC | 30 ms
10,624 KB |
testcase_30 | WA | - |
testcase_31 | AC | 302 ms
24,704 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
import sys sys.setrecursionlimit(10000000) MOD = 10 ** 9 + 7 INF = 10 ** 15 from collections import deque,defaultdict,Counter def main(): N,D,K = map(int,input().split()) X = [int(input()) for _ in range(N)] ans = 0 L,R = -1,-1 q = deque([]) for i in range(N): if q and q[0][1] < i - D: q.popleft() if q and X[i] - q[0][0] > ans: ans = X[i] - q[0][0] L = q[0][1] R = i if (not q) or (q[-1][0] <= X[i]): q.append((X[i],i)) if L < 0: print(0) else: print(ans * K) print(L,R) if __name__ == '__main__': main()