結果
| 問題 | No.3721 Absurd Basic Constructive |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 13:03:36 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 35 ms / 2,000 ms |
| + 413µs | |
| コード長 | 391 bytes |
| 記録 | |
| コンパイル時間 | 2,087 ms |
| コンパイル使用メモリ | 329,800 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-19 13:04:08 |
| 合計ジャッジ時間 | 9,018 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 47 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll N,K;
cin>>N>>K;
if(K==0){
cout<<-1<<"\n";
return 0;
}
ll c=N*N-K;
for(int i=0;i<N;i++){
for(int j=0;j<N;j++){
cout<<c+1<<" \n"[j==N-1];
c++;
c%=(N*N);
}
}
}