Recent Posts
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 | 31 |
Tags
- Spring Batch
- JanusWebRTCGateway
- preemption #
- vfr video
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 티스토리챌린지
- JanusWebRTC
- python
- 코루틴 컨텍스트
- 겨울 부산
- terminal
- tolerated
- PersistenceContext
- JanusWebRTCServer
- pytest
- table not found
- VARCHAR (1)
- Value too long for column
- 깡돼후
- 개성국밥
- taint
- 코루틴 빌더
- JanusGateway
- PytestPluginManager
- mp4fpsmod
- k8s #kubernetes #쿠버네티스
- 오블완
- 달인막창
- 자원부족
- kotlin
Archives
너와 나의 스토리
(BOJ) 1100 하얀 칸 본문
반응형
문제: https://www.acmicpc.net/problem/1100
문제 풀이:
index | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
0 | White | White | White | White | ||||
1 | White | White | White | White | ||||
2 | White | White | White | White | ||||
3 | White | White | White | White | ||||
4 | White | White | White | White | ||||
5 | White | White | White | White | ||||
6 | White | White | White | White | ||||
7 | White | White | White | White |
White는 x축과 y축의 합이 짝수인 곳이다
소스 코드:
int res;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
char c;
cin >> c;
if ((i + j) % 2 == 0 && c=='F') res++;
}
}
cout<<res<<'\n';
return 0;
}
반응형
'Algorithm > 구현' 카테고리의 다른 글
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 크레인 인형뽑기 게임 (0) | 2020.05.04 |
---|---|
1770. [SW Test 샘플문제] 블록 부품 맞추기 (4) | 2019.11.07 |
[BOJ] 13567 로봇 (0) | 2019.10.04 |
(BOJ) 2933 미네랄 (0) | 2019.07.28 |
(BOJ) 11559 Puyo Puyo (0) | 2019.07.22 |
Comments