본문 바로가기
반응형
[SWEA] D1: 아주 간단한 계산기(1938) 해설 문제- 문제 링크: 아주 간단한 계산기 풀이(C++)solution 1)- 시간 복잡도: 더보기#includeusing namespace std;int main(int argc, char** argv){ int test_case; int T; int a, b; cin >> a >> b; cout  (Java)solution 1)- 시간 복잡도: 더보기import java.util.* (Python)solution 1)- 시간 복잡도: 더보기import sysa, b = map(int, input().split())print(a + b)print(a - b)print(a * b)print(a // b) 2025. 1. 12.
[SWEA] D1: 간단한 N 의 약수(1933) 해설 문제- 문제 링크: 간단한 N의 약수 풀이(C++)solution 1)- 시간 복잡도: 더보기#includeusing namespace std;int main(int argc, char** argv){ int test_case; int T; int n; cin >> n; for (int i = 1; i  (Java)solution 1)- 시간 복잡도: 더보기import java.util.* (Python)solution 1)- 시간 복잡도: 더보기import sysn = int(input())for i in range(1, n + 1): if n % i == 0: print(i, end=" ") 2025. 1. 12.
[SWEA] D1: 1대1 가위바위보(1936) 해설 문제- 문제 링크: 1대1 가위바위보 풀이(C++)solution 1)- 시간 복잡도: 더보기#includeusing namespace std;int main(int argc, char** argv){ int test_case; int T; int a, b; cin >> a >> b; if (a == 1) { if (b == 2) cout  (Java)solution 1)- 시간 복잡도: 더보기import java.util.* (Python)solution 1)- 시간 복잡도: 더보기import sysa, b = map(int, input().split())if (a == 1): if (b == 2): print('B') e.. 2025. 1. 12.
[SWEA] D1: 더블더블(2019) 문제- 문제 링크: 더블더블 풀이(C++)solution 1)- 시간 복잡도: 더보기#includeusing namespace std;int main(int argc, char** argv){ int test_case; int T; cin>>T; long long answer = 1; for(test_case = 0; test_case  (Java)solution 1)- 시간 복잡도: 더보기import java.util.* (Python)solution 1)- 시간 복잡도: 더보기import sysT = int(input())answer = 1for test_case in range(0, T+1): answer = 2**test_case print(answer, end = " ") 2025. 1. 12.
[SWEA] D1: 거꾸로 출력해 보아요(1545) 해설 문제- 문제 링크: 거꾸로 출력해 보아요 풀이(C++)solution 1)- 시간 복잡도: 더보기#includeusing namespace std;int main(int argc, char** argv){ int test_case; int T; cin>>T; for(test_case = T; test_case >= 0; --test_case) { cout  (Java)solution 1)- 시간 복잡도: 더보기import java.util.* (Python)solution 1)- 시간 복잡도: 더보기#import sysT = int(input())for test_case in range(T, -1,-1): print(test_case, end=' ') 2025. 1. 12.
반응형