結果
問題 | No.1971 Easy Sudoku |
ユーザー | Maffy-0 |
提出日時 | 2022-06-18 09:54:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 785 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 171,720 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-09 20:55:04 |
合計ジャッジ時間 | 3,797 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; using ll = long long; using P = pair<int,int>; using Pll = pair<ll,ll>; using Graph = vector<vector<int>>; #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep1(i,n) for(ll i = 1; i <= (n); ++i) #define drep(i,n) for(ll i = (n)-1; i >= 0; --i) #define srep(i,s,t) for (ll i = s; i < (t); ++i) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() void solve(){ int n; cin >> n; vector<vector<int>> a(n,vector<int>(n)); rep(i,n){ rep(j,n){ a[i][j] = (i+j)%n+1; } } rep(i,n){ rep(j,n){ cout << a[i][j]; } cout << endl; } } int main(void){ solve(); return 0; }