QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#667295#7159. CandyKhiem#0 0ms3864kbC++14403b2024-10-22 22:04:462024-10-22 22:05:02

Judging History

This is the latest submission verdict.

  • [2024-10-22 22:05:02]
  • Judged
  • Verdict: 0
  • Time: 0ms
  • Memory: 3864kb
  • [2024-10-22 22:04:46]
  • Submitted

answer

#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
const int N = 105;
ll a[N];
signed main(){
    int n, F; ll T; scanf("%d %d %lld", &n, &F, &T);
    ll tot = 0;
    for(int i = 0; i<n; ++i) scanf("%d", a+i), tot += a[i];
    if(tot < T){ printf("NO"); return 0;}
    tot = 0;
    for(int i = 0; i<F; ++i) tot += a[i];
    if(tot < T) printf("1");
    else printf("0");
}

詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 6
Accepted
time: 0ms
memory: 3708kb

input:

1 1 7
7

output:

0

result:

ok single line: '0'

Test #2:

score: 6
Accepted
time: 0ms
memory: 3792kb

input:

1 1 8
7

output:

NO

result:

ok single line: 'NO'

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 3864kb

input:

2 1 7
5 6

output:

1

result:

wrong answer 1st lines differ - expected: 'NO', found: '1'

Subtask #2:

score: 0
Wrong Answer

Test #9:

score: 0
Wrong Answer
time: 0ms
memory: 3708kb

input:

100 50 50
1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

output:

1

result:

wrong answer 1st lines differ - expected: '1805', found: '1'

Subtask #3:

score: 0
Skipped

Dependency #1:

0%

Subtask #4:

score: 0
Skipped

Dependency #1:

0%

Subtask #5:

score: 0
Skipped

Dependency #1:

0%