結果
問題 |
No.1169 Row and Column and Diagonal
|
ユーザー |
![]() |
提出日時 | 2020-08-14 22:24:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 349 bytes |
コンパイル時間 | 2,084 ms |
コンパイル使用メモリ | 191,196 KB |
最終ジャッジ日時 | 2025-01-13 00:10:20 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | WA * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define tezz std::ios::sync_with_stdio(false);std::cout.tie(NULL);std:cin.tie(NULL); int main() { ll n; cin>>n; ll r=1; for(ll i=1;i<=n;i++){ for(ll j=1;j<=n;j++){ cout<<j<<" "; } cout<<endl; } }