結果
| 問題 | 
                            No.82 市松模様
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-12-21 18:10:25 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 209 bytes | 
| コンパイル時間 | 509 ms | 
| コンパイル使用メモリ | 63,428 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-14 12:31:43 | 
| 合計ジャッジ時間 | 1,051 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 7 | 
ソースコード
#include<iostream>
using namespace std;
int main() {
	int h,w;char c;cin>>w>>h>>c;
	char d;
	if(c=='B')d='W';
	else d='B';
	for(int i=0;i<h;i++)
	{
		for(int j=0;j<w;j++)cout<<((i+j)&1?d:c);
		cout<<endl;
	}
}