結果
問題 | No.1071 ベホマラー |
ユーザー | umashi-pan-tnokk093n |
提出日時 | 2020-06-06 11:58:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 310 bytes |
コンパイル時間 | 330 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,688 KB |
最終ジャッジ日時 | 2024-12-23 12:00:30 |
合計ジャッジ時間 | 4,480 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,752 KB |
testcase_06 | AC | 27 ms
10,624 KB |
testcase_07 | AC | 26 ms
10,624 KB |
testcase_08 | AC | 26 ms
10,624 KB |
testcase_09 | AC | 26 ms
10,624 KB |
testcase_10 | WA | - |
testcase_11 | AC | 149 ms
19,372 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)