[알고리즘] 백준 12790 - Mini Fantasy War (C++) [문제 링크] : https://www.acmicpc.net/problem/12790#include using namespace std;int Arr[8];int main(){ int T; cin >> T; for(int j=0; j> Arr[i]; } Arr[0] += Arr[4]; Arr[1] += Arr[5]; Arr[2] += Arr[6]; Arr[3] += Arr[7]; Arr[0] 알고리즘 2024.12.21
[알고리즘] 백준 5893 - 17배 (C++) [문제 링크] : https://www.acmicpc.net/problem/5893#include #include using namespace std; int main(){ string A, B, Ans; cin >> A; B = A; A += "0000"; int tmp = 0; while(B.empty() == false){ int val = A.back() + B.back() - 96 + tmp; tmp = val / 2; Ans += to_string(val % 2); A.pop_back(); B.pop_back(); } while(A.empty() == false){ int va.. 알고리즘 2024.12.20
[알고리즘] 백준 2804 - 크로스워드 만들기 (C++) [문제 링크] : https://www.acmicpc.net/problem/2804#include using namespace std;int main(){ string A, B; int a = -1, b = -1; bool f = false; cin >> A >> B; for(int i=0; i 알고리즘 2024.12.19
[알고리즘] 백준 26545 - Mathematics (C++) [문제 링크] : https://www.acmicpc.net/problem/26545#include using namespace std;int main(){ int N, inp, Ans = 0; cin >> N; for(int i=0; i> inp; Ans += inp; } cout 알고리즘 2024.12.18
[알고리즘] 백준 9550 - 아이들은 사탕을 좋아해 (C++) [문제 링크] : https://www.acmicpc.net/problem/9550#include using namespace std;int main(){ int T, N, M, inp, Cnt; cin >> T; for(int i=0; i> N >> M; Cnt = 0; for(int j=0; j> inp; while(inp >= M){ Cnt++; inp -= M; } } cout 알고리즘 2024.12.17
[알고리즘] 백준 6810 - ISBN (C++) [문제 링크] : https://www.acmicpc.net/problem/6810#include using namespace std;int A, B, C;int main(){ cin >> A >> B >> C; cout 알고리즘 2024.12.16
[알고리즘] 백준 6679 - 싱기한 네자리 숫자 (C++) [문제 링크] : https://www.acmicpc.net/problem/6679#include using namespace std;int solve(int n, int t){ int ret = 0; while(n != 0){ ret += n % t; n /= t; } return ret;}int main(){ for(int i=1000; i 알고리즘 2024.12.15
[알고리즘] 백준 28113 - 정보섬의 대중교통 (C++) [문제 링크] : https://www.acmicpc.net/problem/28113#include using namespace std;int main(){ int N, A, B; cin >> N >> A >> B; if(A B && B 알고리즘 2024.12.14
[알고리즘] 백준 30676 - 이 별은 무슨 색일까 (C++) [문제 링크] : https://www.acmicpc.net/problem/30676#include using namespace std;int main(){ int N; cin >> N; if(N = 620){ cout = 590){ cout = 570){ cout = 495){ cout = 450){ cout = 425){ cout = 380){ cout 알고리즘 2024.12.13
[알고리즘] 백준 30007 - 라면 공식 (C++) [문제 링크] : https://www.acmicpc.net/problem/30007#include using namespace std;int main(){ int N, A, B, C; cin >> N; for(int i=0; i> A >> B >> C; cout 알고리즘 2024.12.12