QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#656681#6135. BooksGrenierWA 210ms6288kbC++20773b2024-10-19 13:32:292024-10-19 13:32:30

Judging History

This is the latest submission verdict.

  • [2024-10-19 13:32:30]
  • Judged
  • Verdict: WA
  • Time: 210ms
  • Memory: 6288kb
  • [2024-10-19 13:32:29]
  • Submitted

answer

#include <algorithm>
#include <cstdio>
#include <iostream>

const int N = 1e6;
#define int long long
int a[N + 2];
void solve() {
    int n, m;
    std::cin >> n >> m;
    for (int i = 1; i <= n; i++) {
        std::cin >> a[i];
    }
    if (m == n) {
        std::cout << "Richman\n";
        return;
    }
    int ans = 0;
    for (int i = 1; i <= m; i++) {
        ans += a[i];
    }
    int mm = 1e10;
    for (int i = m + 1; i <= n; i++) {
        mm = std::min(mm, a[i]);
    }
    if (mm == 0)
        std::cout << "Impossible\n";
    else {
        ans += mm - 1;
        std::cout << ans << std::endl;
    }
}
signed main() {
    int times;
    std::cin >> times;
    while (times--) {
        solve();
    }
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3636kb

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: 210ms
memory: 6288kb

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
Impossible
Impossible
99999999999999
192
80
Richman
97
460
Richman
24
163
98
30
15
Richman
Richman
Richman
65
Richman
Richman
450
98
44
349
34
513
28
161
297
Richman
Richman
Richman
147
274
2
160
76
58
91
130
3
Richman
175
32
15
Richman
21
26
Richman
65
Richman
247
356
Richman
Richman
60
312
62
27...

result:

wrong answer 2nd lines differ - expected: '0', found: 'Impossible'