結果

問題 No.1071 ベホマラー
ユーザー pia019pia019
提出日時 2020-06-23 11:37:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 325 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,860 KB
最終ジャッジ日時 2024-07-03 19:13:03
合計ジャッジ時間 2,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 RE -
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 102 ms
19,796 KB
testcase_11 AC 102 ms
19,504 KB
testcase_12 AC 78 ms
16,428 KB
testcase_13 AC 116 ms
18,356 KB
testcase_14 AC 108 ms
20,232 KB
testcase_15 AC 112 ms
21,684 KB
testcase_16 AC 115 ms
21,860 KB
testcase_17 AC 144 ms
21,680 KB
testcase_18 AC 155 ms
21,684 KB
testcase_19 AC 134 ms
21,552 KB
testcase_20 RE -
testcase_21 AC 90 ms
21,652 KB
testcase_22 RE -
testcase_23 AC 92 ms
21,652 KB
testcase_24 AC 115 ms
21,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, X, Y = map(int,input().split())
ls = list(map(int,input().split()))
ls.sort(reverse = True)

for i in range(N):
    ls[i] = - ((-ls[i] + 1) // K)
    
a = Y // X #a以下はベホイミ
b = ls[a]
ans = Y * b

for i in range(N):
    if ls[i] > b:
      ans += (ls[i] - b) * X 
    else:
        break
    
print(ans)    
0