結果
問題 | No.82 市松模様 |
ユーザー | ho |
提出日時 | 2020-07-10 19:52:46 |
言語 | TypeScript (5.7.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 7,771 ms |
コンパイル使用メモリ | 229,372 KB |
実行使用メモリ | 41,456 KB |
最終ジャッジ日時 | 2024-12-31 16:14:06 |
合計ジャッジ時間 | 9,090 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
const isEven = (n: number) => n % 2 == 0; const writeRow = (n: number, o: string, t: string) => { let result = o; for (let i = 0; i < n; i++) { if (isEven(i)) result += t; if (!isEven(i)) result += o; } return result } const Main = (input) => { const data = input.split("\n") const width: number = data[0], heigh: number = data[1]; const start: string = data[2]; const second: string = start === 'W' ? 'B' : 'W'; let result = ''; for (var i = 1; i <= heigh; i++) { if (!isEven(i)) result += writeRow(width, start, second); if (isEven(i)) result += writeRow(width, second, start); if (i < heigh) result += `\n` } console.log(result); } Main(require("fs").readFileSync("/dev/stdin", "utf8"));