結果
問題 | No.82 市松模様 |
ユーザー | 双六 |
提出日時 | 2020-07-22 10:38:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 52 ms / 5,000 ms |
コード長 | 583 bytes |
コンパイル時間 | 670 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 62,324 KB |
最終ジャッジ日時 | 2024-06-11 04:29:41 |
合計ジャッジ時間 | 1,609 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
60,728 KB |
testcase_01 | AC | 48 ms
61,516 KB |
testcase_02 | AC | 48 ms
61,340 KB |
testcase_03 | AC | 48 ms
60,660 KB |
testcase_04 | AC | 48 ms
61,156 KB |
testcase_05 | AC | 50 ms
60,592 KB |
testcase_06 | AC | 47 ms
60,480 KB |
testcase_07 | AC | 48 ms
60,840 KB |
testcase_08 | AC | 51 ms
61,796 KB |
testcase_09 | AC | 52 ms
62,324 KB |
ソースコード
# import sys; input = sys.stdin.buffer.readline # sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") import copy def getlist(): return list(map(int, input().split())) #処理内容 def main(): W, H, C = list(input().split()) W = int(W) H = int(H) if C == "W": c = "B" else: c = "W" table = [[None] * W for i in range(H)] for i in range(H): for j in range(W): if (i + j) % 2 == 0: table[i][j] = C else: table[i][j] = c for i in range(H): print("".join(table[i])) if __name__ == '__main__': main()