結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー umezoumezo
提出日時 2021-02-19 22:38:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,379 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 202,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-16 21:00:33
合計ジャッジ時間 28,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 22 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 22 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 22 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 23 ms
6,944 KB
testcase_18 AC 22 ms
6,944 KB
testcase_19 AC 22 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 22 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 22 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 22 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int main(){
  int w,h,x;
  cin>>w>>h>>x;

  if(x>36) cout<<-1<<endl;
  else if(x<=9){
    if(w%3==1 && h%3==1){
      rep(i,h){
        rep(j,w){
          if(i%3==0 && j%3==0) cout<<x;
          else cout<<0;
        }
        cout<<endl;
      }
    }
    else if(w%3==1){
      rep(i,h){
        rep(j,w){
          if(i%3==1 && j%3==0) cout<<x;
          else cout<<0;
        }
        cout<<endl;
      }
    }
    else if(h%3==1){
      rep(i,h){
        rep(j,w){
          if(i%3==0 && j%3==1) cout<<x;
          else cout<<0;
        }
        cout<<endl;
      }
    }
    else{
      rep(i,h){
        rep(j,w){
          if(i%3==1 && j%3==1) cout<<x;
          else cout<<0;
        }
        cout<<endl;
      }
    }
  }
  else{
    if(h%3!=2 || w%3!=2) cout<<-1<<endl;
    else{
      int a,b,c,d;
      if(x>9 && x<=18) a=9,b=x-9,c=0,d=0;
      else if(x>18 && x<=27) a=9,b=9,c=x-18,d=0;
      else a=9,b=9,c=9,d=x-27;
      rep(i,h){
        rep(j,w){
          if(i%3==0 && j%3==0) cout<<a;
          else if(i%3==1 && j%3==0) cout<<b;
          else if(i%3==0 && j%3==1) cout<<c;
          else if(i%3==1 && j%3==1) cout<<d;
          else cout<<0;
        }
        cout<<endl;
      }
    }
  }

  return 0;
}
0