結果
問題 | No.1071 ベホマラー |
ユーザー | umashi-pan-tnokk093n |
提出日時 | 2020-06-06 11:58:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 310 bytes |
コンパイル時間 | 326 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,852 KB |
最終ジャッジ日時 | 2024-06-06 01:17:34 |
合計ジャッジ時間 | 4,748 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,624 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 27 ms
10,752 KB |
testcase_07 | AC | 28 ms
10,624 KB |
testcase_08 | AC | 28 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | AC | 149 ms
19,500 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 | - |
ソースコード
n,k,x,y =map(int,input().split())#behoimi x behoma y a=list(map(int,input().split())) a.sort() kaisu=[] done=0 ans=0 for i in a: j=i//k if i%k!=0: j+=1 kaisu.append(j) for i in kaisu: i-=done if y<n*x: done+=i ans+=y*i else: ans+=x*i n-=1 print(ans)