結果

問題 No.1971 Easy Sudoku
ユーザー kuraraberukuraraberu
提出日時 2022-06-10 22:00:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 891 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 170,092 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-21 06:18:25
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;

// aよりもbが大きいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmax(T &a, const T& b) {
  if (a < b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}
// aよりもbが小さいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmin(T &a, const T& b) {
  if (a > b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}

int main(){
    int N;cin>>N;
    vector<int> a;
    rep(i,N)a.push_back(i+1);
    rep(i,N){
        rep(j,N){
            cout<<a[j];
            if(j==N-1){
                printf("\n");
            }
        }
        int p=a[N-1];
        a.pop_back();
        a.insert(a.begin(),p);
    }

}
0