| Task: | Card game |
| Sender: | aalto26ch_004 |
| Submission time: | 2026-09-11 18:30:44 +0300 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | details |
| #2 | ACCEPTED | 0.00 s | details |
| #3 | ACCEPTED | 0.00 s | details |
| #4 | WRONG ANSWER | 0.00 s | details |
| #5 | WRONG ANSWER | 0.00 s | details |
| #6 | WRONG ANSWER | 0.01 s | details |
| #7 | WRONG ANSWER | 0.02 s | details |
| #8 | WRONG ANSWER | 0.20 s | details |
| #9 | WRONG ANSWER | 0.20 s | details |
| #10 | WRONG ANSWER | 0.20 s | details |
| #11 | ACCEPTED | 0.00 s | details |
| #12 | WRONG ANSWER | 0.00 s | details |
| #13 | RUNTIME ERROR | 0.00 s | details |
| #14 | ACCEPTED | 0.32 s | details |
| #15 | ACCEPTED | 0.20 s | details |
Code
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
int main()
{
int n_cards;
cin >> n_cards;
vector<int> storage;
vector<int> score;
vector<int> pos_values = {3, 4};
int temp;
for (int i = 0; i < n_cards; ++i)
{
cin >> temp;
storage.push_back(temp);
score.push_back(temp);
}
for (int i = 1; i < n_cards - 1; ++i)
{
for(auto pos : pos_values)
{
if(i - pos > 0)
{
int new_score = storage[i] + score[i - pos];
score[i] = max(score[i], new_score);
}
}
}
cout << *max_element(++score.begin(), --score.end()) << endl;
}Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 5 9 4 1 6 6 |
| correct output |
|---|
| 6 |
| user output |
|---|
| 6 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 6 5 6 2 4 10 1 |
| correct output |
|---|
| 16 |
| user output |
|---|
| 16 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 10 8 9 10 2 7 1 10 10 1 4 |
| correct output |
|---|
| 26 |
| user output |
|---|
| 26 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 1 8 8 5 7 10 9 4 8 10 6 3 8 7 ... |
| correct output |
|---|
| 243 |
| user output |
|---|
| 242 |
Feedback: Incorrect character on line 1 col 3: expected "243", got "242"
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 1000 10 7 5 6 5 2 5 3 2 2 1 6 8 7 8... |
| correct output |
|---|
| 2230 |
| user output |
|---|
| 2205 |
Feedback: Incorrect character on line 1 col 3: expected "2230", got "2205"
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 10000 9 1 8 2 6 5 1 3 3 10 6 3 9 3 1... |
| correct output |
|---|
| 22363 |
| user output |
|---|
| 22202 |
Feedback: Incorrect character on line 1 col 3: expected "22363", got "22202"
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 100000 5 5 4 6 8 7 9 6 3 2 5 8 7 3 5 ... |
| correct output |
|---|
| 226636 |
| user output |
|---|
| 224587 |
Feedback: Incorrect character on line 1 col 3: expected "226636", got "224587"
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 1000000 5 8 5 7 9 1 9 10 3 6 1 8 3 9 7... |
| correct output |
|---|
| 2259395 |
| user output |
|---|
| 2238414 |
Feedback: Incorrect character on line 1 col 3: expected "2259395", got "2238414"
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 1000000 4 5 3 5 4 3 6 7 10 6 3 9 7 9 1... |
| correct output |
|---|
| 2260761 |
| user output |
|---|
| 2239254 |
Feedback: Incorrect character on line 1 col 3: expected "2260761", got "2239254"
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 1000000 10 3 6 7 7 10 4 4 5 2 9 4 6 10... |
| correct output |
|---|
| 2260407 |
| user output |
|---|
| 2238976 |
Feedback: Incorrect character on line 1 col 3: expected "2260407", got "2238976"
Test 11
Verdict: ACCEPTED
| input |
|---|
| 3 87 3 123 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 3 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 2 175 95 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 95 |
Feedback: Incorrect character on line 1 col 1: expected "0", got "95"
Test 13
Verdict: RUNTIME ERROR
| input |
|---|
| 1 42 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Test 14
Verdict: ACCEPTED
| input |
|---|
| 1000000 1000 1000 1000 1000 1000 1000 ... |
| correct output |
|---|
| 333333000 |
| user output |
|---|
| 333333000 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 1000000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| 333333 |
| user output |
|---|
| 333333 |
