結果
| 問題 | No.3733 My First Grid |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 16:16:46 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 375 bytes |
| 記録 | |
| コンパイル時間 | 2,297 ms |
| コンパイル使用メモリ | 333,356 KB |
| 実行使用メモリ | 10,060 KB |
| 最終ジャッジ日時 | 2026-09-19 16:17:00 |
| 合計ジャッジ時間 | 6,372 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 15 WA * 24 RE * 18 |
ソースコード
#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";
}
assert(K<=H*W-H-W+2);
cout<<-1<<"\n";
}