Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- react
- web
- 코드업
- 자료구조
- 프로그래머스
- memory
- C++
- 분할메모리할당
- CPU 스케줄링
- react-redux
- Spring
- codeup
- 리덕스장바구니
- 타입스크립트
- 알고리즘
- 스프링
- 일상
- 기초100제
- OS
- Redux
- Java
- 파이썬
- 협업
- js to ts
- Operating System
- 공부
- 정렬
- 토이프로젝트
- error
Archives
- Today
- Total
감자튀김 공장🍟
[백준/15552] 빠른 A+B (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
import sys
T = int(input())
for _ in range(T):
a, b = map(int, sys.stdin.readline().split())
print(a+b)
✔ 후기
sys.stdin.readline().split()을 자동완성 도움 없이 썼더니 stdin() 이러고 있었다...
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/11022] A+B - 8 (with 파이썬) (0) | 2022.10.03 |
---|---|
[백준/11021] A+B - 7 (with 파이썬) (0) | 2022.10.02 |
[백준/25304] 영수증 (with 파이썬) (0) | 2022.10.02 |
[백준/8393] 합 (with 파이썬) (0) | 2022.10.01 |
[백준/10950] A+B - 3 (with 파이썬) (0) | 2022.10.01 |
Comments