fork download
  1. #include <iostream>
  2. using namespace std;
  3. int Shortest(int arr[], int len){
  4. int s=arr[0];
  5. for(int i=1; i<=len-1; i++){
  6. if(arr[i]<s) s=arr[i];
  7. }return s;
  8. }
  9. int main() {
  10. int H, W;
  11. int x=0;
  12. cin>>H>>W;
  13. int arr[100];
  14. for(int i=0; i<H*W; i++){
  15. cin>>arr[i];
  16. }
  17. int y=Shortest(arr, H*W);
  18. for(int j=0; j<H*W; j++){
  19. if(arr[j]==y) x=x+0;
  20. else x=x+(arr[j]-y);
  21. }
  22. cout<<x;
  23. }
Success #stdin #stdout 0.01s 5280KB
stdin
3 2
4 4
4 4
4 4
stdout
Standard output is empty