結果
問題 | No.82 市松模様 |
ユーザー | bluemegane |
提出日時 | 2020-09-07 15:29:52 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 22 ms / 5,000 ms |
コード長 | 820 bytes |
コンパイル時間 | 911 ms |
コンパイル使用メモリ | 111,488 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-05-06 23:48:04 |
合計ジャッジ時間 | 1,556 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
17,536 KB |
testcase_01 | AC | 20 ms
17,664 KB |
testcase_02 | AC | 20 ms
17,664 KB |
testcase_03 | AC | 20 ms
18,048 KB |
testcase_04 | AC | 21 ms
17,536 KB |
testcase_05 | AC | 21 ms
17,536 KB |
testcase_06 | AC | 22 ms
17,536 KB |
testcase_07 | AC | 20 ms
17,664 KB |
testcase_08 | AC | 19 ms
17,664 KB |
testcase_09 | AC | 20 ms
17,408 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { public static string bb, ww, bbb, www; static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var w = int.Parse(line[0]); var h = int.Parse(line[1]); makebc(); bbb = bb.Substring(0, w); www = ww.Substring(0, w); var c = line[2]; getAns(w, h, c); } static void makebc() { var t = "BW"; var t2 = "WB"; bb = ""; ww = ""; for (int i = 0; i < 25; i++) { bb += t; ww += t2; } } static void getAns(int w, int h, string c) { var bw = c; for (int i = 0; i < h; i++) { Console.WriteLine(bw == "B"? bbb:www); bw = bw == "B" ? "W" : "B"; } } }