일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- writeup
- #hacking
- 버퍼오버플로우
- dreamhack
- picoCTF
- 카이사르
- #picoCTF2018
- 스택
- 번역
- 정답
- Hxd
- 리눅스
- 시스템해킹
- forensics
- Protostar
- picoCTF2018
- write up
- reversing
- WEB
- general skills
- Smashing The Stack For Fun And Profit
- Aleph One
- grep
- 리버싱
- cryptography
- 해설
- 해킹 공부
- KOISTUDY
- CTF
- 시스템
Archives
- Today
- Total
목록95번 (1)
Security || AI
[Koistudy] 0095. 바둑판에 흰 돌 놓기
#include int map[19][19] = {0}; int main() { int put, x, y; scanf("%d", &put); for(int i = 0; i < put; i++) { scanf("%d %d", &x, &y); map[x-1][y-1] = 1; } for(int i = 0; i < 19; i++) { for(int j = 0; j < 19; j++) { printf("%d ", map[i][j]); } printf("\n"); } }
Programming/Koistudy
2019. 1. 2. 20:47