QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#394479 | #3164. All Kill | maoyiting | WA | 5ms | 4316kb | C++14 | 288b | 2024-04-20 15:10:24 | 2024-04-20 15:10:25 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
int n,t,a[N],ans;
signed main(){
scanf("%d%d",&n,&t);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]),t-=a[i];
ans=t+1;
for(int i=1,s=0;i<n;i++)
ans=1ll*ans*(n+t+1-i+(s+=a[i]));
printf("%d\n",ans);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3800kb
input:
3 5 1 2 1
output:
60
result:
ok single line: '60'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
5 5 1 1 1 1 1
output:
1296
result:
ok single line: '1296'
Test #3:
score: -100
Wrong Answer
time: 5ms
memory: 4316kb
input:
99227 20385292 7 54 381 4 5 81 784 4 58 5 952 707 62 88 73 88 51 6 37 895 4 442 10 924 2 34 139 938 95 460 648 5 935 933 8 3 53 275 316 232 5 221 4 290 31 17 19 984 498 49 666 295 928 6 5 6 79 48 7 2 241 6 790 8 1 7 4 280 387 4 59 12 8 92 8 69 24 999 61 4 9 296 62 3 79 46 465 10 2 8 10 971 7 6 366 5...
output:
0
result:
wrong answer 1st lines differ - expected: '637667063', found: '0'