結果
問題 | No.82 市松模様 |
ユーザー | TaK7907 |
提出日時 | 2019-11-17 15:08:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 855 bytes |
コンパイル時間 | 2,476 ms |
コンパイル使用メモリ | 112,136 KB |
実行使用メモリ | 28,188 KB |
最終ジャッジ日時 | 2024-09-25 05:56:59 |
合計ジャッジ時間 | 3,404 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; public class Program { public static string Solver(System.IO.TextReader reader) { const string PATTERN = "WBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBWBW"; var buffer = reader.ReadLine().Split( ' ' ); var w = int.Parse( buffer[ 0 ] ); var h = int.Parse( buffer[ 1 ] ); var c = char.Parse( buffer[ 2 ] ); var writer = new System.IO.StringWriter(); for (var i = 0; i != h; ++i) { writer.WriteLine( i % 2 == 0 ? ( c == 'W' ? PATTERN.Substring( 0, w ) : PATTERN.Substring( 1, w ) ) : ( c == 'W' ? PATTERN.Substring( 1, w ) : PATTERN.Substring( 0, w ) ) ); } return writer.ToString(); } private static void Main() { Console.WriteLine( Solver( Console.In ) ); } }