結果

問題 No.1169 Row and Column and Diagonal
ユーザー 👑 CleyLCleyL
提出日時 2022-04-14 13:11:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 72,180 KB
最終ジャッジ日時 2025-01-28 17:38:14
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
  int n;cin>>n;
  vector<int> A(n);
  int nw = 0;
  for(int i = 0; n > i; i+=2){
    A[i] = nw;
    nw++;
  }
  for(int i = 1; n > i; i += 2){
    A[i] = nw;
    nw++;
  }
  for(int i = 0; n > i; i++){
    for(int j = 0; n > j; j++){
      cout << A[(i+j)%n]+1;
      if(j+1 != n)cout << " ";
    }
    cout << endl;
  }
}
0