BOJ(15)
-
[백준] 백준 python3 27323번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/273232. 문제 3. 소스코드print(int(input()) * int(input()))
2024.10.08 -
[백준] 백준 Python3 24264번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/242642. 문제 3. 소스코드n = int(input())print(n**2)print(2)
2024.10.08 -
[백준] 백준 Python3 24263번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/242632. 문제3. 소스코드print(input())print(1)
2024.10.08 -
[백준] 백준 Python3 24262번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/242622. 문제3. 소스코드print(1)print(0)
2024.10.08 -
[백준] 백준 Python 3 11653번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/116532. 문제 3. 소스코드n = int(input())if n == 1: print('') for i in range(2, n+1): if n % i == 0: while n % i == 0: print(i) n = n / i
2024.10.08 -
[백준] 백준 python3 1978번 문제 및 소스코드
1. 문제 링크https://www.acmicpc.net/problem/19782. 문제 3. 소스 코드n = int(input())data = list(map(int, input().split()))count = 0for x in data: for i in range(2, x+1): if x % i == 0: if x == i: count += 1 breakprint(count)
2024.10.08