2021-09-20から1日間の記事一覧

C++版

#include <stdio.h> #define CHECK_ALL #define N_ANS 3 int ata_map[8][8]; void clear_map() { for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { ata_map[i][j] = 0; } } } const int yyy[8] = {-1, -1, -1, 0, 0, 1, 1, 1}; const int xxx[8] = {-1, </stdio.h>…