# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
861447 |
2023-10-16T08:12:54 Z |
hocky |
A Plus B (IOI23_aplusb) |
C++17 |
|
0 ms |
344 KB |
#include "aplusb.h"
#define rep(i,a,b) for(int i = a;i < b;i++)
std::vector<int> smallest_sums(int N, std::vector<int> A, std::vector<int> B) {
if(N == 1) return {0};
rep(i,0,N) {
A[i] += B[i];
}
return A;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '465', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '465', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '465', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
1st lines differ - on the 1st token, expected: '465', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |