| Task: | Apple Division |
| Sender: | aalto26aw_002 |
| Submission time: | 2026-09-02 16:59:05 +0300 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | details |
| #2 | WRONG ANSWER | 0.00 s | details |
| #3 | WRONG ANSWER | 0.00 s | details |
| #4 | WRONG ANSWER | 0.00 s | details |
| #5 | WRONG ANSWER | 0.00 s | details |
| #6 | WRONG ANSWER | 0.00 s | details |
| #7 | WRONG ANSWER | 0.00 s | details |
| #8 | WRONG ANSWER | 0.00 s | details |
| #9 | WRONG ANSWER | 0.00 s | details |
| #10 | WRONG ANSWER | 0.00 s | details |
| #11 | WRONG ANSWER | 0.00 s | details |
| #12 | WRONG ANSWER | 0.00 s | details |
| #13 | ACCEPTED | 0.00 s | details |
| #14 | ACCEPTED | 0.00 s | details |
| #15 | ACCEPTED | 0.00 s | details |
| #16 | ACCEPTED | 0.00 s | details |
| #17 | WRONG ANSWER | 0.00 s | details |
| #18 | ACCEPTED | 0.00 s | details |
Compiler report
input/code.cpp:72:5: warning: "/*" within comment [-Wcomment]
72 | /*for (auto& Acar:cars) {
|Code
#include <algorithm>
#include <cstdint>
#include <iostream>
#include <vector>
/*
sort(apples)
weightA=0
weightB=0
for (apples from last to first)
if (weightB=>weightA) {
weightA+=appleweight
} else weightA+=appleweight;
return abs(weightA-weightB)
*/
int main() {
using std::cin;
using std::vector;
int n;
cin>>n;
vector<int> apples;
for (int i=0;i<n;i++) {
int j;
cin>>j;
apples.emplace_back(j);
}
std::sort(apples.begin(),apples.end());
int weightA=0,weightB=0;
for (int i=n-1;i>=0;i--) {
// std::cout<<apples[i]<<std::endl;
if (weightA>weightB) {
weightB+=apples[i];
} else weightA+=apples[i];
}
int weight=weightA-weightB;
std::cout<<weight;
}
/*
int main() {
using std::vector;
using std::cout;
int n;
std::cin >> n;
std::vector<std::pair<int,int>> cars;
std::pair<int,int> car;
for(int i=0;i<n;i++) {
std::cin >> car.first;
std::cin>>car.second;
cars.emplace_back(car);
}
std::sort(cars.begin(),cars.end());
std::cout<<std::endl;
int current=0;
int start,end;
int a,b=0;
int maximum=0;
while (b<n&&a<n) {
start=cars[a].first;
end=cars[b].second;
if (start>end) {
a++;
current--;
} else {
b++;
current++;
}
maximum=std::max(maximum,current);
std::cout<<"a"<<a<<"b"<<b<<"start"<<start<<std::endl;
}
/*for (auto& Acar:cars) {
std::cout<<Acar.first<<" "<<Acar.second<<std::endl;
}*/
/*
return 0;
// TIP See CLion help at <a href="https://www.jetbrains.com/help/clion/">jetbrains.com/help/clion/</a>. Also, you can try interactive lessons for CLion by selecting 'Help | Learn IDE Features' from the main menu.
}*/Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 603 324 573 493 659 521 654 70... |
| correct output |
|---|
| 2 |
| user output |
|---|
| -62 |
Feedback: Incorrect character on line 1 col 1: expected "2", got "-62"
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 10 952 775 292 702 859 719 65 943... |
| correct output |
|---|
| 1 |
| user output |
|---|
| -171 |
Feedback: Incorrect character on line 1 col 1: expected "1", got "-171"
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 10 141 156 14 487 250 230 741 602... |
| correct output |
|---|
| 2 |
| user output |
|---|
| -10 |
Feedback: Incorrect character on line 1 col 1: expected "2", got "-10"
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 10 963 359 731 826 599 931 40 86 ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| -102 |
Feedback: Incorrect character on line 1 col 1: expected "4", got "-102"
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 238 224 861 461 558 860 318 93... |
| correct output |
|---|
| 2 |
| user output |
|---|
| -92 |
Feedback: Incorrect character on line 1 col 1: expected "2", got "-92"
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 10 193 848 70 53 864 886 374 31 2... |
| correct output |
|---|
| 1 |
| user output |
|---|
| -1 |
Feedback: Incorrect character on line 1 col 1: expected "1", got "-1"
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 20 13048212 423374770 19874608 81... |
| correct output |
|---|
| 8231 |
| user output |
|---|
| 1820961093 |
Feedback: Incorrect character on line 1 col 1: expected "8231", got "1820961093"
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 20 314836307 815098885 922742346 ... |
| correct output |
|---|
| 1188 |
| user output |
|---|
| -1002871792 |
Feedback: Incorrect character on line 1 col 1: expected "1188", got "-1002871792"
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 20 846261131 196958704 824235264 ... |
| correct output |
|---|
| 11770 |
| user output |
|---|
| -2118209586 |
Feedback: Incorrect character on line 1 col 1: expected "11770", got "-2118209586"
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 20 92021619 792314463 937735495 8... |
| correct output |
|---|
| 4453 |
| user output |
|---|
| -1817313315 |
Feedback: Incorrect character on line 1 col 1: expected "4453", got "-1817313315"
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 20 452747515 202201476 845758891 ... |
| correct output |
|---|
| 4881 |
| user output |
|---|
| 474321063 |
Feedback: Incorrect character on line 1 col 2: expected "4881", got "474321063"
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 20 934033764 747013925 113297529 ... |
| correct output |
|---|
| 5482 |
| user output |
|---|
| 1567188458 |
Feedback: Incorrect character on line 1 col 1: expected "5482", got "1567188458"
Test 13
Verdict: ACCEPTED
| input |
|---|
| 1 1000000000 |
| correct output |
|---|
| 1000000000 |
| user output |
|---|
| 1000000000 |
Test 14
Verdict: ACCEPTED
| input |
|---|
| 2 1 1 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 1 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 16
Verdict: ACCEPTED
| input |
|---|
| 5 934033764 2 7 4 1 |
| correct output |
|---|
| 934033750 |
| user output |
|---|
| 934033750 |
Test 17
Verdict: WRONG ANSWER
| input |
|---|
| 20 934033764 747013925 113297529 ... |
| correct output |
|---|
| 5483 |
| user output |
|---|
| 1567188459 |
Feedback: Incorrect character on line 1 col 1: expected "5483", got "1567188459"
Test 18
Verdict: ACCEPTED
| input |
|---|
| 19 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
