IT보안관의 공부 클라우드
[구름 Level1]뱀이 지나간 자리 본문
N,M = map(int, input().split())
check = False
for i in range(N):
for j in range(M):
if i % 2 == 0:
print('#',end='')
else:
if j == 0 and check:
print("#",end='')
elif j == M-1 and check==False:
print("#",end='')
else:
print('.',end='')
if i % 2 != 0 :
if check:
check = False
else:
check = True
print()
'코딩 테스트 > 구름' 카테고리의 다른 글
[구름 Level2]두부자르기 (0) | 2022.06.16 |
---|---|
[구름 Level2]거울 단어 (0) | 2022.06.16 |
[구름 Level1]막대기 (0) | 2022.06.15 |
[구름 Level1]정사각형의 개수 (0) | 2022.06.15 |
[구름 Level1]단어의 개수 세기 (0) | 2022.06.15 |
Comments