結果
| 問題 |
No.82 市松模様
|
| コンテスト | |
| ユーザー |
toshiro_yanagi
|
| 提出日時 | 2019-01-06 23:00:56 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 296 bytes |
| コンパイル時間 | 482 ms |
| コンパイル使用メモリ | 65,476 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-24 00:19:18 |
| 合計ジャッジ時間 | 994 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main()
{
int w, h;
string c;
cin >> w >> h >> c;
bool k = c == "W";
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
cout << "BW"[k];
k ^= 1;
}
if (w % 2 == 0)
{
k ^= 1;
}
cout << endl;
}
}
toshiro_yanagi