結果

問題 No.82 市松模様
ユーザー rlangevinrlangevin
提出日時 2024-03-02 20:13:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 62,984 KB
最終ジャッジ日時 2024-09-29 16:26:24
合計ジャッジ時間 1,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,056 KB
testcase_01 AC 36 ms
52,064 KB
testcase_02 AC 33 ms
52,248 KB
testcase_03 AC 32 ms
53,908 KB
testcase_04 AC 32 ms
53,096 KB
testcase_05 AC 31 ms
52,812 KB
testcase_06 AC 33 ms
52,588 KB
testcase_07 AC 33 ms
53,424 KB
testcase_08 AC 41 ms
62,376 KB
testcase_09 AC 42 ms
62,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W, H, C = input().split()
W, H = int(W), int(H)
if C == "B":
	D = "W"
else:
	D = "B"
	
for i in range(H):
	ans = []
	for j in range(W):
		if (i + j) % 2:
			ans.append(D)
		else:
			ans.append(C)
	print(*ans, sep="")
0