#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
long long min_total_length(vector<int> r, vector<int> b) {
ll ans = 0, temp;
if (b.size() > r.size()) {
for (int i=0;i<(int)b.size();i++) {
temp = min(i, (int)r.size() - 1);
ans += b[i] - r[temp];
}
} else {
for (int i=0;i<(int)r.size();i++) {
temp = min(i, (int)b.size() - 1);
ans += b[temp] - r[i];
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
3rd lines differ - on the 1st token, expected: '25859', found: '-4369' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
3rd lines differ - on the 1st token, expected: '904', found: '1109' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
3rd lines differ - on the 1st token, expected: '17703', found: '-19052' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
3rd lines differ - on the 1st token, expected: '27', found: '12' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
3rd lines differ - on the 1st token, expected: '25859', found: '-4369' |
2 |
Halted |
0 ms |
0 KB |
- |