1744 ํ์ด์ฌ
-
[Python] 1744 ์๋ฌถ๊ธฐAlgorithm/๋ฐฑ์ค 2022. 12. 28. 21:22
1. ๋ฌธ์ ๐ https://www.acmicpc.net/problem/1744 2. ์ ์ถ๋ ฅ ์ ๐ 3. ์๊ณ ๋ฆฌ์ฆ โ - ์ต๋๊ฐ ๋์ค๊ธฐ ์ํด์ ์์์์ ๊ฒฝ์ฐ์ ์ 1) ์์ * ์์ ๊ฒฝ์ฐ์ ์ 2) ์์ + ์์ ๊ฒฝ์ฐ์ ์ 3) ์์ * 0 ๊ฒฝ์ฐ์ ์ 4) ์์ 4๊ฐ์ง ์ค์ ์ต๋ ๊ฐ์ ์์๋ ๊ฒฝ์ฐ์ ์ 1) ์์ * ์์ ๊ฒฝ์ฐ์ ์ 2) ์์ + ์์ ๊ฒฝ์ฐ์ ์ 3) ์์ 3๊ฐ์ง ์ค์ ์ต๋ ๊ฐ์ ๋ํด์ผํ๋ค ๋ฐ๋ผ์ ์ธํ์ ๋ฐ๋ก ๋ฐ๋ก ๋ฐ์์ฃผ์ด ๋ชจ๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๋ฐ์ ธ์ค๋น 4. ์์ค์ฝ๋ ๐ป import sys input = sys.stdin.readline N = int(input().strip()) negative_arr = [] zero_arr = [] positive_arr = [] for i in ran..