Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 문자열
- 투 포인터
- 정렬
- 다이나믹 프로그래밍
- 수학
- Team Fortress 2
- DFS
- 유니티
- 백트래킹
- BFS
- 시뮬레이션
- 스택
- Unreal Engine 5
- ue5
- XR Interaction Toolkit
- 자료구조
- 우선순위 큐
- 브루트포스
- c++
- 알고리즘
- 트리
- 그래프
- 그리디 알고리즘
- 구현
- 백준
- 다익스트라
- 재귀
- VR
- 누적 합
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 24040번 예쁜 케이크 C++ 본문
https://www.acmicpc.net/problem/24040
띠가 3개를 주기로 반복되기 때문에 가로 + 세로가 3의 배수가 될 수 있는지 확인하면 된다.
높이가 1이기 때문에 주어지는 부피는 가로 * 세로 * 1 = 가로 * 세로이다.
1) 가로 * 세로가 9의 배수라면 가로를 3의 배수, 세로도 3의 배수로 만들 수 있고 더하면 3의 배수가 된다.
2) 가로 * 세로를 3으로 나눈 나머지가 2라면 (가로%3) * (세로%3)도 2이기 때문에 각각의 나머지가 (1,2) 또는 (2,1)이 된다. 둘을 더하면 3 * a + 3 이기 때문에 3의 배수가 된다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
int64 n;
cin >> n;
if (n % 9 == 0 || n % 3 == 2)cout << "TAK\n";
else cout << "NIE\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 11909번 배열 탈출 C++ (0) | 2022.12.18 |
---|---|
백준 6443번 애너그램 C++ (0) | 2022.12.17 |
백준 17086번 아기 상어 2 C++ (0) | 2022.12.15 |
백준 12789번 도키도키 간식드리미 C++ (0) | 2022.12.14 |
백준 5545번 최고의 피자 C++ (0) | 2022.12.13 |