結果
問題 | No.1169 Row and Column and Diagonal |
ユーザー | MASATO338 |
提出日時 | 2020-08-14 22:17:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 1,529 ms |
コンパイル使用メモリ | 167,724 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 15:36:52 |
合計ジャッジ時間 | 2,713 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 5 ms
6,820 KB |
testcase_07 | AC | 8 ms
6,820 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | AC | 15 ms
6,820 KB |
testcase_10 | AC | 25 ms
6,820 KB |
testcase_11 | AC | 27 ms
6,816 KB |
testcase_12 | AC | 28 ms
6,816 KB |
testcase_13 | AC | 28 ms
6,816 KB |
testcase_14 | AC | 28 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using ll = long long; using namespace std; const int INFint = 1e9+1; const ll INFll = (ll)1e18+1; ll MOD=1e9+7; int main(){ int N; cin>>N; int ans[501][501] = {0},ans2[501][501] = {0}; for(int i(1);i<=N;i++){ for(int j(1);j<=N;j++){ if(j - i+1 <= 0) ans[i][j] = j-i+N+1; else ans[i][j] = j-i+1; //ans[i][j] = (j-i) } } int retu[501] = {0}; for(int i(0);i<N/2+1;i++){ retu[i*2+1] = i+1; } for(int i(1);i<=N/2;i++){ retu[i*2]=N/2+1+i; } // cout << endl; // for(int i(1);i<=N;i++){ // cout << retu[i] << " "; // } // cout << endl; // cout << endl; for(int i(1);i<=N;i++){ for(int j(1);j<=N;j++){ ans2[j][retu[i]] = ans[j][i]; } } for(int i(1);i<=N;i++){ for(int j(1);j<=N;j++){ if(j != N) cout << ans2[i][j] << " "; else cout << ans2[i][j]; } cout << endl; } return 0; }