27903번: 인생 - Python

FriOct·2024년 9월 25일
0

PS

목록 보기
108/108
post-thumbnail

문제

https://www.acmicpc.net/problem/27903

풀이

굉장히 흥미로운 문제이다. 내 아이디가 babnbabn이어서 print를 쓰진 못했다. 하지만, 간단하다. 힌트만 확인 한다면 풀 수 있다.

코드

from sys import stdout

d = [98, 97, 98, 110, 98, 97, 98, 110]

stdout.write(chr(d[0]))
stdout.write(chr(d[1]))
stdout.write(chr(d[2]))
stdout.write(chr(d[3]))
stdout.write(chr(d[4]))
stdout.write(chr(d[5]))
stdout.write(chr(d[6]))
stdout.write(chr(d[7]))
profile
꿈 많은 개발자

0개의 댓글