[알고리즘] 백준 13136 - Do Not Touch Anything (C++) [문제 링크] : https://www.acmicpc.net/problem/13136#include using namespace std;int main(){ long long R, C, N, X, Y; cin >> R >> C >> N; if(R % N){ X = R / N + 1; } else{ X = R / N; } if(C % N){ Y = C / N + 1; } else{ Y = C / N; } cout 알고리즘 2024.12.05
[알고리즘] 백준 2484 - 주사위 네개 (C++) [문제 링크] : https://www.acmicpc.net/problem/2484#include using namespace std;int Arr[7];int main(){ int N, Ans = 0; cin >> N; while(N--){ int inp; for(int i=0; i> inp; Arr[inp]++; } for(int j=6; j>0; j--){ if(Arr[j] == 4){ Ans = Ans 0; k--){ if(Arr[k] == 2){ Ans = Ans 알고리즘 2024.12.04
[알고리즘] 백준 10769 - 행복한지 슬픈지 (C++) [문제 링크] : https://www.acmicpc.net/problem/10769#include using namespace std;int main(){ string S; int A = 0, B = 0; getline(cin, S); for(int i=0; i B){ cout 알고리즘 2024.12.03
[알고리즘] 백준 4493 - 가위 바위 보? (C++) [문제 링크] : https://www.acmicpc.net/problem/4493#include using namespace std;int main(){ int N, inp; cin >> N; char A, B; for(int i=0; i> inp; for(int i=0; i> A >> B; if(A == 'R'){ if(B == 'R'){ a++; b++; } else if(B == 'S'){ a++; } .. 알고리즘 2024.12.02
[알고리즘] 백준 25628 - 햄버거 만들기 (C++) [문제 링크] : https://www.acmicpc.net/problem/25628#include using namespace std;int A, B;int main(){ cin >> A >> B; cout 알고리즘 2024.12.01
[알고리즘] 백준 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