結果
問題 | No.1071 ベホマラー |
ユーザー | Fuyuru |
提出日時 | 2020-06-15 17:44:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 726 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 106,900 KB |
最終ジャッジ日時 | 2024-07-03 11:29:56 |
合計ジャッジ時間 | 5,501 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
85,364 KB |
testcase_01 | AC | 116 ms
85,692 KB |
testcase_02 | AC | 121 ms
85,760 KB |
testcase_03 | AC | 114 ms
85,592 KB |
testcase_04 | WA | - |
testcase_05 | AC | 117 ms
85,572 KB |
testcase_06 | WA | - |
testcase_07 | AC | 120 ms
85,768 KB |
testcase_08 | AC | 124 ms
85,760 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 160 ms
102,508 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 | AC | 152 ms
105,776 KB |
testcase_21 | AC | 155 ms
106,500 KB |
testcase_22 | AC | 150 ms
105,508 KB |
testcase_23 | AC | 149 ms
106,284 KB |
testcase_24 | WA | - |
ソースコード
import sys import math import itertools import bisect from copy import copy from collections import deque,Counter from decimal import Decimal def s(): return input() def i(): return int(input()) def S(): return input().split() def I(): return map(int,input().split()) def L(): return list(input().split()) def l(): return list(map(int,input().split())) def lcm(a,b): return a*b//math.gcd(a,b) sys.setrecursionlimit(10 ** 9) mod = 10**9+7 N,K,X,Y = I() A = l() A.sort(reverse=True) A = [math.ceil((A[i]-1)/K) for i in range(N)] B = math.ceil(X/Y) if X > Y: print(max(A)) exit() if X*N < Y: B = N+1 C = A[0:B] if A[B:]: D = max(A[B:]) else: D = 0 ans = 0 for c in C: ans += X*(c-D) ans += D*Y print(ans)