結果

問題 No.82 市松模様
ユーザー koba-e964
提出日時 2015-05-24 10:29:50
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 158,732 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-06 06:39:05
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
int w,h;cin>>w>>h;
string c;cin>>c;
int q = c =="B" ? 1 : 0;
for(int i=0;i<h;i++){
for(int j=0;j<w;j++){
cout<<((q + j + i) % 2 ?  'B' : 'W') << endl;
}
cout<<endl;
}}
0