QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#492738 | #6135. Books | Ink_bai | WA | 59ms | 4388kb | C++14 | 972b | 2024-07-26 15:36:56 | 2024-07-26 15:36:56 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxn=1e5+10;
int val[maxn];
int n,m;
void solve()
{
cin>>n>>m;
int sum=0;
for(int i=1;i<=n;i++)
val[i]=0;
int cnt=0,cntt=0,pos=0,ans=0;
int minn=0x3f3f3f3f;
for(int i=1;i<=n;i++)
{
cin>>val[i];
if(val[i]==0) cnt++;
minn=min(val[i],minn);
sum+=val[i];
}
if(m==0) {cout<<minn-1<<endl;return;}
if(n==m) {cout<<"Richman"<<endl;return;}
if(cnt>m) {cout<<"Impossible"<<endl;return;}
for(int i=1;i<=n;i++)
{
if(cntt==m)
{
sort(val+1+i,val+1+n);
pos=i;
break;
}
cntt++;
ans+=val[i];
}
ans+=val[pos]-1;
cout<<ans<<endl;
return ;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int t;
cin>>t;
while(t--)
solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3556kb
input:
4 4 2 1 2 4 8 4 0 100 99 98 97 2 2 10000 10000 5 3 0 0 0 0 1
output:
6 96 Richman Impossible
result:
ok 4 lines
Test #2:
score: -100
Wrong Answer
time: 59ms
memory: 4388kb
input:
10012 1 0 2 3 2 0 1 0 2 1 0 0 100000 99999 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000...
output:
1 0 Impossible 99999999999999 192 80 Richman 97 490 Richman 24 163 98 30 15 Richman Richman Richman 111 Richman Richman 450 168 44 350 34 513 28 202 321 Richman Richman Richman 212 344 2 160 76 101 91 130 3 Richman 200 32 15 Richman 21 26 Richman 88 Richman 302 356 Richman Richman 60 313 62 343 Rich...
result:
wrong answer 9th lines differ - expected: '460', found: '490'