23805번 : 골뱅이 찍기 - 돌아간 ㄹ

링크

https://www.acmicpc.net/problem/23805

sol1) 구현

#pragma GCC target("avx,avx2,fma")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define int int64_t
using namespace std;

char DB[5][6] = {
  "@@@ @",
  "@ @ @",
  "@ @ @",
  "@ @ @",
  "@ @@@",
};

int32_t main(){
  fastio;
  int n; cin >> n;
  const int sz = 5*n;
  for(int i = 0; i < sz; i++,puts(""))
    for(int j = 0; j < sz; j++)putchar(DB[i/n][j/n]);
}

좋은 웹페이지 즐겨찾기