Task: | 3SUM |
Sender: | louaha1 |
Submission time: | 2024-10-21 17:20:38 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | WRONG ANSWER | 0.02 s | details |
#6 | WRONG ANSWER | 0.02 s | details |
#7 | WRONG ANSWER | 0.02 s | details |
#8 | WRONG ANSWER | 0.02 s | details |
#9 | WRONG ANSWER | 0.02 s | details |
#10 | WRONG ANSWER | 0.02 s | details |
#11 | WRONG ANSWER | 0.02 s | details |
#12 | WRONG ANSWER | 0.02 s | details |
#13 | WRONG ANSWER | 0.02 s | details |
#14 | WRONG ANSWER | 0.02 s | details |
#15 | WRONG ANSWER | 0.02 s | details |
#16 | WRONG ANSWER | 0.02 s | details |
#17 | WRONG ANSWER | 0.02 s | details |
#18 | WRONG ANSWER | 0.02 s | details |
#19 | WRONG ANSWER | 0.02 s | details |
#20 | WRONG ANSWER | 0.02 s | details |
#21 | WRONG ANSWER | 0.02 s | details |
#22 | WRONG ANSWER | 0.02 s | details |
#23 | WRONG ANSWER | 0.02 s | details |
Code
def find_three_values(n, x, arr): # Create a list of tuples (value, index) for easy tracking of indices indexed_arr = [(arr[i], i + 1) for i in range(n)] # Sort the array based on values indexed_arr.sort() # Iterate over each element, and for each element use two pointers for i in range(n): target_sum = x - indexed_arr[i][0] left, right = i + 1, n - 1 while left < right: current_sum = indexed_arr[left][0] + indexed_arr[right][0] if current_sum == target_sum: # Return the 1-based indices return indexed_arr[i][1], indexed_arr[left][1], indexed_arr[right][1] elif current_sum < target_sum: left += 1 else: right -= 1 # If no solution found return "IMPOSSIBLE" # Example input n = 4 x = 8 arr = [2, 7, 5, 1] find_three_values(n, x, arr)
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
1 3 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 2
Verdict: WRONG ANSWER
input |
---|
3 5 1 3 2 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 3
Verdict: WRONG ANSWER
input |
---|
3 6 1 3 2 |
correct output |
---|
1 3 2 |
user output |
---|
(empty) |
Test 4
Verdict: WRONG ANSWER
input |
---|
3 7 3 2 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 5
Verdict: WRONG ANSWER
input |
---|
7 3 2 1 1 2 2 1 1 |
correct output |
---|
2 3 7 |
user output |
---|
(empty) |
Test 6
Verdict: WRONG ANSWER
input |
---|
7 4 1 1 2 2 1 2 1 |
correct output |
---|
1 2 6 |
user output |
---|
(empty) |
Test 7
Verdict: WRONG ANSWER
input |
---|
7 5 1 2 1 2 2 1 1 |
correct output |
---|
1 2 5 |
user output |
---|
(empty) |
Test 8
Verdict: WRONG ANSWER
input |
---|
7 6 2 1 1 1 1 2 2 |
correct output |
---|
1 6 7 |
user output |
---|
(empty) |
Test 9
Verdict: WRONG ANSWER
input |
---|
5000 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
1 2 5000 |
user output |
---|
(empty) |
Test 10
Verdict: WRONG ANSWER
input |
---|
5000 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 11
Verdict: WRONG ANSWER
input |
---|
5000 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
714 3518 4240 |
user output |
---|
(empty) |
Test 12
Verdict: WRONG ANSWER
input |
---|
5000 919900245 663612758 9075403 585385629 98... |
correct output |
---|
2787 465 2266 |
user output |
---|
(empty) |
Test 13
Verdict: WRONG ANSWER
input |
---|
5000 999989608 12983 25966 38949 51932 64915 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 14
Verdict: WRONG ANSWER
input |
---|
5000 1000000000 65536 131072 196608 262144 327... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 15
Verdict: WRONG ANSWER
input |
---|
5000 642700000 6427 12854 19281 25708 32135 3... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 16
Verdict: WRONG ANSWER
input |
---|
5000 919900246 663612758 9075403 585385629 98... |
correct output |
---|
193 1698 4019 |
user output |
---|
(empty) |
Test 17
Verdict: WRONG ANSWER
input |
---|
5000 919900247 663612758 9075403 585385629 98... |
correct output |
---|
4258 470 1911 |
user output |
---|
(empty) |
Test 18
Verdict: WRONG ANSWER
input |
---|
5000 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 ... |
correct output |
---|
4998 4999 5000 |
user output |
---|
(empty) |
Test 19
Verdict: WRONG ANSWER
input |
---|
5000 919900247 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 20
Verdict: WRONG ANSWER
input |
---|
4999 919900245 9075403 585385629 987230075 83... |
correct output |
---|
2786 464 2265 |
user output |
---|
(empty) |
Test 21
Verdict: WRONG ANSWER
input |
---|
5000 1000000000 261323261 25262018 237798562 3... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 22
Verdict: WRONG ANSWER
input |
---|
5000 76305003 1 5088 10175 15262 20349 25436... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |
Test 23
Verdict: WRONG ANSWER
input |
---|
2 6 2 2 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
(empty) |