【题意】


在这里写题意

【题解】


max(最大值-25,0)

【错的次数】


0

【反思】


在这了写反思

【代码】

#include <bits/stdc++.h>
using namespace std;

int k,ans;

int main(){
    //freopen("F:\\rush.txt","r",stdin);
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> k;
    for (int i = 1,x;i <= k;i++){
        cin >> x;
        ans = max(ans,x);
    }
    if (ans-25>=0){
        cout << ans-25<<endl;
    }else
        cout << 0 << endl;

    return 0;
}


相关文章:

  • 2022-12-23
  • 2021-10-12
  • 2021-11-14
  • 2021-07-28
  • 2021-09-30
  • 2021-06-12
  • 2021-12-05
  • 2021-12-22
猜你喜欢
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-18
  • 2022-12-23
  • 2021-10-10
相关资源
相似解决方案