結果
問題 | No.82 市松模様 |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-08-18 14:29:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 63,104 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 19:23:10 |
合計ジャッジ時間 | 1,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> using namespace std; int main() { int W, H; char C; cin >> W >> H >> C; for (int i = 0; i < H; i++) { for (int j = 0; j < W; j++) { cout << (((i + j) & (C == 'W')) ? 'B' : 'W'); } cout << endl; } return 0; }