[파이썬][백준 17295번] 엔드게임 스포일러
1. 문제Permalink
[Bronze V] 엔드게임 스포일러 - 17295Permalink
성능 요약Permalink
메모리: 30860 KB, 시간: 68 ms
분류Permalink
구현(implementation)
출처: 백준, https://https://www.acmicpc.net/
2. 해결방법 시간복잡도Permalink
- 단순 코딩 O(1)
3. 문제 해결 및 코드Permalink
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A = str(input()) | |
print("Avengers: Endgame") |
-
주석을 참고하면서 이해를 돕습니다.Permalink
4. 알고리즘 및 해설Permalink
- 입력값을 받은 다음 최종 출력은 어벤져스 엔드게임 제목을 출력해준다.