[알고리즘] 백준 28444 - HI-ARC=? (C++) [문제 링크] : https://www.acmicpc.net/problem/28444#include using namespace std;int main(){ int H, I, A, R, C; cin >> H >> I >> A >> R >> C; cout 알고리즘 2024.11.30
[알고리즘] 백준 1350 - 진짜 공간 (C++) [문제 링크] : https://www.acmicpc.net/problem/1350#include #include using namespace std;int N, M;long long inp, Ans = 0;vector V;int main(){ cin >> N; for(int i=0; i> inp; V.push_back(inp); } cin >> M; for(int i=0; i M){ if(V[i] % M == 0){ Ans += V[i] / M; } else{ Ans += V[i] / M + 1; } } el.. 알고리즘 2024.11.29
[알고리즘] 백준 2997 - 네 번째 수 (C++) [문제 링크] : https://www.acmicpc.net/problem/2997#include #include using namespace std;int Arr[3];int A, B;int main(){ for(int i=0; i> Arr[i]; } sort(Arr, Arr + 3); int A = Arr[1] - Arr[0]; int B = Arr[2] - Arr[1]; if(A > B){ cout 알고리즘 2024.11.28
[알고리즘] 백준 30030 - 스위트콘 가격 구하기 (C++) [문제 링크] : https://www.acmicpc.net/problem/30030#include using namespace std;int main(){ int N; cin >> N; cout 알고리즘 2024.11.27
[알고리즘] 백준 21756 - 지우개 (C++) [문제 링크] : https://www.acmicpc.net/problem/21756#include #include using namespace std;int N;vector A, B;int main(){ cin >> N; for(int i=1; i 알고리즘 2024.11.26
[알고리즘] 백준 9094 - 수학적 호기심 (C++) [문제 링크] : https://www.acmicpc.net/problem/9094#include using namespace std;int T, Cnt, N, M;int main(){ cin >> T; while(T--){ Cnt = 0; cin >> N >> M; for(int i=1; i 알고리즘 2024.11.25
[알고리즘] 백준 5613 - 계산기 프로그램 (C++) [문제 링크] : https://www.acmicpc.net/problem/5613#include using namespace std;int main(){ int N, T; char C; cin >> N; while(true){ cin >> C >> T; if(C == '='){ break; } if(C == '+'){ N += T; } else if(C == '-'){ N -= T; } else if(C == '*'){ N *= T; } else if(C == '/'){ .. 알고리즘 2024.11.24
[알고리즘] 백준 11944 - NN (C++) [문제 링크] : https://www.acmicpc.net/problem/11944#include using namespace std;int main(){ string S; int M; cin >> S >> M; int N = stoi(S); string Ans = ""; for(int i=0; i M){ cout 알고리즘 2024.11.23
[알고리즘] 백준 2774 - 아름다운 수 (C++) [문제 링크] : https://www.acmicpc.net/problem/2774#include #include using namespace std;int Arr[10]; int main(){ int N; string S; cin >> N; int a, b; for(int i=0; i> S; a = 0; b = 0; for(int i=0; i 알고리즘 2024.11.22
[알고리즘] 백준 15232 - Rectangles (C++) [문제 링크] : https://www.acmicpc.net/problem/15232#include using namespace std;int main(){ int R, C; cin >> R >> C; for(int i=0; i 알고리즘 2024.11.21