結果
問題 | No.1169 Row and Column and Diagonal |
ユーザー | WarToks |
提出日時 | 2020-09-03 20:22:51 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 748 bytes |
コンパイル時間 | 3,669 ms |
コンパイル使用メモリ | 129,684 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 03:38:17 |
合計ジャッジ時間 | 5,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
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 | - |
ソースコード
#include <iostream> #include <iomanip> #include <algorithm> #include <array> #include <cassert> #include <utility> #include <vector> int main(void){ std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(16); constexpr int N = 500; std::array<std::array<int, N>, N> Arr; int n; std::cin >> n; for(int i = 1; i <= n; ++i){ for(int x = 0, y = i - 1; x < n; ++x, ++y){ if(y >= n) y -= n; Arr[x][y] = i; } } for(int i = 0; i < n; ++i){ for(int j = 0; j < n; ++j){ std::cout << Arr[i][j]; if(j + 1 == n) std::cout << '\n'; else std::cout << ' '; } } return 0; }