[파이썬][백준 7287번] 등록
1. 문제Permalink
[Bronze V] 등록 - 7287Permalink
성능 요약Permalink
메모리: 30864 KB, 시간: 64 ms
분류Permalink
구현(implementation)
문제 설명Permalink
자신이 백준 온라인 저지(BOJ)에서 맞은 문제의 수와 아이디를 그대로 출력하는 프로그램을 작성하시오.
입력Permalink
이 문제는 입력이 없다.
출력Permalink
첫 줄에 자신이 맞은 문제의 수, 둘째 줄에 아이디를 출력한다.
출처: 백준, 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
print(87) | |
print('cmblir') |
-
주석을 참고하면서 이해를 돕습니다.Permalink
4. 알고리즘 및 해설Permalink
- 문제에서 제시한 맞은 문제수와 아이디를 출력해준다.