比赛 2024暑期C班集训3 评测结果 C
题目名称 挑战 NPH 最终得分 0
用户昵称 李奇文 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2024-07-03 09:37:06
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int t;
int main(){
    freopen("NPH.in","r",stdin);
    freopen("NPH.out","w",stdout);
    while(t--){
        int n,k,w[1001]={},sum=0,minn=0x3f;
        bool s=false;
        cin>>n>>k;
        for(int i=1;i<=n;i++){
            cin>>w[i];
            sum+=w[i];
            if(w[i]==1) s=true;
            if(w[i]<minn) minn=w[i];
        }
        if(n==1){
            cout<<k*w[1]<<endl;
            return 0;
        }
        if(w[i]==n){
            cout<<1*k<<endl;
            return 0;
        }
        if(s){
            cout<<k;
        }
        return 0;
    }
    return 0;
}