- 1. Wprowadzanie, drukowanie i liczby
- 2. Liczba całkowita i liczba zmiennoprzecinkowa
- 3. Warunki: if-then-else
- 4. Dla pętli z zakresem
- 5. Smyczki
- 6. Podczas gdy pętla
- 7. Listy
- 8. Funkcje i rekursja
- 9. Dwuwymiarowe listy (tablice)
- 10. Zestawy
- 11. Słowniki
- 12. JavaScript
- 13. HTML5 and CSS
- 14. Responsive Design with Bootstrap
- 15. jQuery
Ad place
Neighbors of the same sign
Statement
Given a list of numbers, find and print the first adjacent elements which have the same sign. If there is no such pair, leave the output blank.In all the problems input the data using input()
and print the result using print()
.
12# Read an integer:# a = int(input())XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Input:
1-1 2 3 -1 -2XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Output:
1XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Saved solutions
Tests
Input | Correct answer | |
---|---|---|
-1 2 3 -1 -2 | 2 3 | |
1 -3 4 -2 1 | ||
1 2 -3 -4 -5 | 1 2 | |
1 -2 3 -4 -5 | -4 -5 | |
1 -2 3 -4 5 6 | 5 6 | |
-1 2 -3 4 -5 6 | ||
1 -2 3 -4 5 -6 | ||
1 -2 3 -4 | ||
-1 2 -3 4 | ||
1 2 3 4 | 1 2 | |
-1 -2 -3 -4 | -1 -2 | |
1 -1 1 -1 -1 1 -1 1 -1 1 | -1 -1 | |
1 -1 1 -1 1 1 -1 1 -1 1 | 1 1 | |
1 -1 1 -1 1 | ||
-1 1 -1 1 -1 |