結果
| 問題 | No.3733 My First Grid |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 16:17:51 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 431 bytes |
| 記録 | |
| コンパイル時間 | 2,325 ms |
| コンパイル使用メモリ | 333,140 KB |
| 実行使用メモリ | 9,928 KB |
| 最終ジャッジ日時 | 2026-09-19 16:18:11 |
| 合計ジャッジ時間 | 6,891 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge4_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 28 RE * 29 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll H,W,K;
cin>>H>>W>>K;
if(K==0){
for(int h=0;h<H;h++){
cout<<string(W,'.')<<"\n";
}
return 0;
}
if(K<1){
cout<<-1<<"\n";
return 0;
}
if(K>H*W-H-W+2){
cout<<-1<<"\n";
return 0;
}
assert(0);
}