結果
問題 | No.82 市松模様 |
ユーザー | koyopro |
提出日時 | 2015-10-01 18:33:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 324 bytes |
コンパイル時間 | 1,432 ms |
コンパイル使用メモリ | 157,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 18:54:55 |
合計ジャッジ時間 | 2,073 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define REP(i, n) for(int i=0; i<(n); i++) int W,H; char C; signed main() { cin>>W>>H>>C; char b[2] = {'W','B'}; if (C == 'B') swap(b[0],b[1]); REP(y,H) { REP(x,H) { cout << b[(x+y)%2]; } cout << endl; } return 0; }