結果
問題 | No.1169 Row and Column and Diagonal |
ユーザー | kotatsugame |
提出日時 | 2020-09-09 18:04:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 123 ms / 2,000 ms |
コード長 | 495 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 65,460 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-15 23:37:26 |
合計ジャッジ時間 | 2,856 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 5 ms
5,248 KB |
testcase_07 | AC | 13 ms
5,248 KB |
testcase_08 | AC | 25 ms
5,248 KB |
testcase_09 | AC | 43 ms
5,248 KB |
testcase_10 | AC | 91 ms
5,248 KB |
testcase_11 | AC | 105 ms
5,248 KB |
testcase_12 | AC | 118 ms
5,248 KB |
testcase_13 | AC | 114 ms
5,248 KB |
testcase_14 | AC | 123 ms
5,248 KB |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int N; int A[500][500]; main() { cin>>N; for(int i=0;i<N;i++)A[i][i]=i+1; for(int i=0;i<N-1;i++) { int t=A[i][i]; for(int j=i+1;j<N;j++) { while(true) { bool found=false; for(int k=0;k<N;k++)if(A[i][k]==t||A[k][j]==t) { found=true; break; } if(!found) { break; } t=t%N+1; } A[i][j]=A[j][i]=t; } } for(int i=0;i<N;i++) { for(int j=0;j<N;j++)cout<<A[i][j]<<(j+1==N?'\n':' '); } }