반응형
1) 내가 작성한 코드
N = int(input())
x = N // 4
print("long " * x + "int")
2) 구글링 코드
for _ in range(int(input())//4):
print("long", end=" ")
print("int")
반응형
'Algorithm > baekjoon' 카테고리의 다른 글
[백준 11021 파이썬/python] A+B-7 (0) | 2023.02.28 |
---|---|
[백준 15552 파이썬/python] 빠른 A+B (0) | 2023.02.28 |
[백준 25304 파이썬/python] 영수증 (1) | 2023.02.28 |
[백준 8393 파이썬/python] 합 (0) | 2023.02.28 |
[백준 10950 파이썬/python] A+B-3 (0) | 2023.02.28 |