結果
| 問題 |
No.82 市松模様
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-12-21 18:09:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 526 ms |
| コンパイル使用メモリ | 64,620 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 12:31:41 |
| 合計ジャッジ時間 | 1,108 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 1 WA * 6 |
ソースコード
#include<iostream>
using namespace std;
int main() {
int h,w;char c;cin>>h>>w>>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;
}
}