結果

問題 No.839 Keep Distance and Nobody Explodes
ユーザー tnakao0123tnakao0123
提出日時 2019-06-15 03:35:35
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 981 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 83,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 01:07:38
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:43:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   43 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 839.cc: 
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 300;

/* typedef */

/* global variables */

int as[MAX_N][MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  int h = n / 2, q = h * h * 2;

  for (int y = 0, p = 0; y < h; y++)
    for (int x = 0; x < h; x++, p++) {
      as[y    ][x    ] = p * 2;
      as[y + h][x + h] = p * 2 + 1;
      as[y    ][x + h] = p * 2 + q;
      as[y + h][x    ] = p * 2 + q + 1;
    }

  for (int y = 0; y < n; y++) {
    for (int x = 0; x < n; x++) {
      if (x) putchar(' ');
      printf("%d", as[y][x] + 1);
    }
    putchar('\n');
  }
  return 0;
}
0