백준 15552 (python) 시간초과, sys

Grace Goh·2022년 9월 5일
0

백준 (python)

목록 보기
8/27
post-custom-banner

백준(python)에서 input()을 사용했을 때 채점 결과 '시간초과'가 뜬다면
input() 대신 sys.stdin.readline()를 쓰면 해결할 수 있다.

import sys를 선언한 뒤 쓸 수 있다.


정답

import sys

T = int(sys.stdin.readline())

for i in range(T):
    A, B = map(int, sys.stdin.readline().split())

    print(A + B)



내가 쓴 답 (채점 결과 : 시간초과)

T = int(input())


for i in range(T):
    A, B = map(int, input().split())

    print(A + B)
profile
Español, Inglés, Coreano y Python

0개의 댓글