結果
| 問題 |
No.1169 Row and Column and Diagonal
|
| コンテスト | |
| ユーザー |
chacoder1
|
| 提出日時 | 2020-08-14 22:10:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 328 bytes |
| コンパイル時間 | 2,181 ms |
| コンパイル使用メモリ | 191,444 KB |
| 最終ジャッジ日時 | 2025-01-12 23:59:45 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int temp=0;
for(int i=1;i<=n;i++){
temp++;
for(int j=1;j<=n;j++){
if(j != 1) cout<<" ";
cout<<temp;
if(j != n) temp--;
if(temp==0){
temp=n;
}
}
cout<<endl;
}
cout<<endl;
return 0;
}
chacoder1