結果

問題 No.3733 My First Grid
コンテスト
ユーザー karinohito
提出日時 2026-09-19 16:17:51
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
RE  
実行時間 -
コード長 431 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 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
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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);
}
0